Skip to content

chore(deps): bump actions/checkout from 3 to 5 (#42) #96

chore(deps): bump actions/checkout from 3 to 5 (#42)

chore(deps): bump actions/checkout from 3 to 5 (#42) #96

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
name: Rust checks
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@stable
- uses: davidB/rust-cargo-make@v1
- uses: actions/checkout@v5
- name: Run format
run: cargo make format
- name: Run check
run: cargo make check
- name: Run clippy
run: cargo make clippy
- name: Run test
run: cargo make test
- name: Generate code coverage
run: cargo make coverage
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}