Skip to content

Commit

Permalink
Merge branch 'main' into lint-repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianGoeb authored Oct 14, 2023
2 parents cdf6e2e + a895ce8 commit 8d20038
Show file tree
Hide file tree
Showing 5 changed files with 636 additions and 172 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# setup
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Rust
uses: ./.github/actions/setup
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
# setup
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Rust
uses: ./.github/actions/setup
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Run tests and generate coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info nextest --profile ci

- uses: mikepenz/action-junit-report@v3
- uses: mikepenz/action-junit-report@v4
if: always()
with:
check_name: test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
# setup
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Rust
uses: ./.github/actions/setup
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Run tests and generate coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info nextest --profile ci

- uses: mikepenz/action-junit-report@v3
- uses: mikepenz/action-junit-report@v4
if: always()
with:
check_name: test
Expand Down
Loading

0 comments on commit 8d20038

Please sign in to comment.