Adição do Meta e StdLib -> Layr de Andrade Neto 222001331, Bruno Henrique Silva De Jesus 211055423, Alisson Vieira Neves 221002067 #65
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Rust CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - name: Check for Compilation Errors | |
| run: cargo check --verbose | |
| - name: Check Code Formatting | |
| run: cargo fmt -- --check | |
| - name: Run tests | |
| run: cargo test --verbose |