aboutsummaryrefslogblamecommitdiffhomepage
path: root/.github/workflows/rust.yml
blob: a80331539cb53e7c6650f56db91860e9ba14f195 (plain) (tree)





















                                           
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose
    - name: Build examples
      run: cargo build --verbose --examples
    - name: Run tests
      run: cargo test --verbose