Fix citation footnotes #101
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 | ||
| on: | ||
| pull_request: | ||
| branches: [main] | ||
| push: | ||
| branches: [main] | ||
| jobs: | ||
| build-test: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| env: | ||
| CARGO_TERM_COLOR: always | ||
| BUILD_PROFILE: debug | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Setup Rust | ||
| uses: leynos/shared-actions/.github/actions/setup-rust@v1.1.0 | ||
| - name: Format | ||
| run: make check-fmt | ||
| - name: Lint | ||
| run: make lint | ||
| - name: Test | ||
| run: make test | ||
| - name: Install cargo-tarpaulin | ||
| run: cargo install cargo-tarpaulin | ||
| - name: Run coverage | ||
| run: cargo tarpaulin --out lcov | ||
| - name: Upload coverage data to CodeScene | ||
| if: ${{ secrets.CS_ACCESS_TOKEN }} | ||
|
Check failure on line 32 in .github/workflows/ci.yml
|
||
| uses: leynos/shared-actions/.github/actions/upload-codescene-coverage@v1.1.0 | ||
| with: | ||
| format: lcov | ||
| access-token: ${{ secrets.CS_ACCESS_TOKEN }} | ||
| installer-checksum: ${{ vars.CODESCENE_CLI_SHA256 }} | ||