test blank lines issue in ci #98
Workflow file for this run
This file contains 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: Commit | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- main | |
jobs: | |
Checks: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: 1.80.1 | |
components: clippy rustfmt | |
- uses: taiki-e/install-action@cargo-make | |
- name: Checks | |
run: cargo make checks | |
Coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: 1.80.1 | |
components: clippy rustfmt | |
- uses: taiki-e/install-action@cargo-make | |
- uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Coverage | |
run: cargo make codecov-coverage | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
files: target/codecov.json |