Skip to content

Commit

Permalink
fix(ci): fix ci formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpsoane committed Jun 27, 2024
1 parent 5642e37 commit f31c6e2
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 42 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# .github/workflows/check.yml
on:
push:
branches:
- master
pull_request:
branches:
- master
push:
branches:
- master
pull_request:
branches:
- master


jobs:
check:
permissions:
checks: write
uses: robertpsoane/github-workflows/.github/workflows/rust-check.yml@main
with:
msrv: 1.78.0 # this is optional defaults to 1.56.0
jobs:
check:
permissions:
checks: write
uses: robertpsoane/github-workflows/.github/workflows/rust-check.yml@main
with:
msrv: 1.78.0 # this is optional defaults to 1.56.0
29 changes: 14 additions & 15 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# .github/workflows/release-plz.yml
permissions:
pull-requests: write
contents: write
pull-requests: write
contents: write

on:
push:
branches:
- master
jobs:
release-plz:
uses: robertpsoane/github-workflows/.github/workflows/rust-release-plz.yml@main
permissions:
pull-requests: write
contents: write
secrets:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
on:
push:
branches:
- master
jobs:
release-plz:
uses: robertpsoane/github-workflows/.github/workflows/rust-release-plz.yml@main
permissions:
pull-requests: write
contents: write
secrets:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
27 changes: 13 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# .github/workflows/test.yml
on:
push:
branches:
- master
pull_request:
branches:
- master
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
uses: robertpsoane/github-workflows/.github/workflows/rust-test.yml@main
with:
crate_type: bin # (optional) change to bin to avoid running cargo test --doc
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
jobs:
test:
uses: robertpsoane/github-workflows/.github/workflows/rust-test.yml@main
with:
crate_type: bin # (optional) change to bin to avoid running cargo test --doc
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit f31c6e2

Please sign in to comment.