Skip to content

chore(deps): update taiki-e/install-action digest to c4b9b42 #244

chore(deps): update taiki-e/install-action digest to c4b9b42

chore(deps): update taiki-e/install-action digest to c4b9b42 #244

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
Audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 # v1
with:
command-arguments: --hide-inclusion-graph
Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Check formating
run: cargo --locked fmt --check
- name: Check code style
run: cargo --locked clippy --all-features --all-targets -- --deny warnings
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install nextest
uses: taiki-e/install-action@c4b9b42ecf7c8bbcd94fa96cf4bf7e8ab56f9315 # v2
with:
tool: nextest
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@c4b9b42ecf7c8bbcd94fa96cf4bf7e8ab56f9315 # v2
with:
tool: cargo-llvm-cov
- name: Run tests with coverage
run: cargo --locked llvm-cov nextest
- uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4
if: success() || failure()
with:
name: junit.xml
path: target/nextest/default/junit.xml