Troubleshoot CI #32
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: CI | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-20.04, macos-13] | |
| steps: | |
| - name: Code checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Configure Rust cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Install ancillary binaries | |
| run: | | |
| cargo install cargo-llvm-cov | |
| cargo install cargo-warloc | |
| - name: Run tests | |
| run: make testcov | tee coverage.txt | |
| - name: Check style | |
| run: make style | |
| - name: Generate documentation | |
| run: make doc | |
| - name: Count lines of code | |
| run: make loc | tee warloc.txt | |
| - name: Compile release binary | |
| run: make release | |
| - name: Upload executable | |
| uses: actions/upload-artifact@v4.6.2 | |
| with: | |
| name: mhrs-${{ matrix.os }} | |
| path: | | |
| target/release/mhrs | |
| coverage.txt | |
| warloc.txt | |
| docs: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/main' | |
| steps: | |
| - name: Code checkout | |
| uses: actions/checkout@v4 | |
| - name: Generate documentation | |
| run: make doc | |
| - name: Add redirect | |
| run: echo '<meta http-equiv="refresh" content="0;url=mhrs/index.html">' > target/doc/index.html | |
| - name: Remove lock file | |
| run: rm target/doc/.lock | |
| - name: Upload pages | |
| if: github.ref == 'refs/heads/main' | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: target/doc/ | |
| deploy: | |
| needs: docs | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/main' | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |