Skip to content

build(deps): bump tj-actions/changed-files from 35.9.2 to 44.0.0 #800

build(deps): bump tj-actions/changed-files from 35.9.2 to 44.0.0

build(deps): bump tj-actions/changed-files from 35.9.2 to 44.0.0 #800

Workflow file for this run

name: Test
on:
workflow_call:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test-rust:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.65
default: true
override: true
- name: Install grcov
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi
- name: Install llvm-tools
run: rustup component add llvm-tools-preview
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
- name: Test rust code
run: cargo make test-coverage
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
files: ./coverage.lcov
fail_ci_if_error: false