Skip to content

Dogfooding: add ruleset to run omnilinter with on its own repository #2

Dogfooding: add ruleset to run omnilinter with on its own repository

Dogfooding: add ruleset to run omnilinter with on its own repository #2

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- { rust: nightly }
- { rust: stable }
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
components: rustfmt
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Format check
run: cargo fmt --check
- name: Run omnilinter on its own repository
run: cargo run -- --config .omnilinter.conf .
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Test
run: cargo test
env:
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- name: Collect coverage
uses: actions-rs/grcov@v0.1
- name: Submit coverage
uses: codecov/codecov-action@v4-beta
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}