Skip to content

Commit

Permalink
Merge branch 'main' into regex-to-nfa-compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
exellentcoin26 committed Jul 14, 2023
2 parents b8d68c2 + 4145196 commit 0e47d39
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ env:
CARGO_TERM_COLOR: always

jobs:
pango-test:
name: pango-test
test:
name: test
runs-on: ${{ matrix.os }}

strategy:
Expand Down Expand Up @@ -62,6 +62,27 @@ jobs:
- name: Check formatting
run: cargo fmt --all -- --check

clippy:
name: clippy
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy

- name: Clippy linting
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features

codecov:
name: codecov
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0e47d39

Please sign in to comment.