8000 chore(deps): update all non-major dependencies · cococonscious/koji@0392b1f · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

chore(deps): update all non-major dependencies #126

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #126

name: push-pr-lint-test
permissions:
contents: read
checks: write
on:
push:
branches:
- main
pull_request:
env:
ACT: false
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/cache@v4.2.0
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: dtolnay/rust-toolchain@stable
- run: git config --global user.name "tests" && git config --global user.email "tests@example.org"
- run: cargo test --all-features
coverage:
name: cargo tarpaulin & codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/cache@v4.2.0
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@cargo-tarpaulin
- run: git config --global user.name "tests" && git config --global user.email "tests@example.org"
- run: cargo tarpaulin --out Xml --engine llvm
- uses: codecov/codecov-action@v5.3.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
dry_run: ${{ env.ACT }}
lints:
name: cargo clippy & fmt
runs- 25A2 on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/cache@v4.2.0
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: dtolnay/rust-toolchain@stable
- run: rustup component add rustfmt clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo fmt --all -- --check
0