name: Rust on: push: branches: [main] pull_request: branches: [main] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: env: CARGO_TERM_COLOR: always jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: Swatinem/rust-cache@v1 - name: Build run: cd rust && cargo build --verbose test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: Swatinem/rust-cache@v1 - name: Run tests run: cd rust && cargo test --verbose lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: Swatinem/rust-cache@v1 - name: Clippy run: cd rust && cargo clippy -- -D warnings - name: Lint run: cd rust && cargo fmt -- --check