From f31c6e27bd7e15fdc6e466cc68dd999c0fbb1f34 Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 27 Jun 2024 20:01:20 +0100 Subject: [PATCH] fix(ci): fix ci formatting --- .github/workflows/check.yml | 26 +++++++++++++------------- .github/workflows/release-plz.yml | 29 ++++++++++++++--------------- .github/workflows/test.yml | 27 +++++++++++++-------------- 3 files changed, 40 insertions(+), 42 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index ff42941..7d4b5be 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -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 \ No newline at end of file +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 \ No newline at end of file diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index f46e8be..098e7fa 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -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 }} \ No newline at end of file +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 }} \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index daefdc9..ac6511e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} \ No newline at end of file +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 }} \ No newline at end of file