Skip to content

Bump taiki-e/install-action from 2.82.5 to 2.82.8 #104

Bump taiki-e/install-action from 2.82.5 to 2.82.8

Bump taiki-e/install-action from 2.82.5 to 2.82.8 #104

Workflow file for this run

name: Pull Request
on: [pull_request]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Rust
run: rustup show
- name: Run Tests
run: make test
format:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Rust
run: rustup show
- name: Check Formatting
run: make check-fmt
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Rust
run: rustup show
- name: Check Linting
run: make lint
coverage:
name: Coverage
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Rust
run: rustup show
- uses: taiki-e/install-action@c93ccc03e00cd0e08e494f5fd058a6c55a6a1907 # 2.82.8
with:
tool: cargo-tarpaulin
- name: Generate coverage
run: cargo tarpaulin --out Lcov --engine llvm
- name: Upload to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
files: ./lcov.info
token: ${{ secrets.CODECOV_TOKEN }}