Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): fix ci formatting #4

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}
Loading