Skip to content

Commit 5bea39a

Browse files
authored
CI: Re-enable testing (#87)
#### Problem Things work now on the auto-publish, but the testing is still disabled. #### Summary of changes Re-enable the testing, and fix to reference "main" instead of "master".
1 parent 62ebf08 commit 5bea39a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/publish-rust.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ jobs:
4040
test:
4141
name: Test Rust Crate
4242
runs-on: ubuntu-latest
43-
if: false
4443
steps:
4544
- name: Git Checkout
4645
uses: actions/checkout@v4
@@ -74,7 +73,7 @@ jobs:
7473
publish:
7574
name: Publish Rust Crate
7675
runs-on: ubuntu-latest
77-
#needs: test
76+
needs: test
7877
permissions:
7978
contents: write
8079
steps:
@@ -133,7 +132,7 @@ jobs:
133132
with:
134133
config: "scripts/cliff.toml"
135134
args: |
136-
"${{ steps.publish.outputs.old_git_tag }}"..master
135+
"${{ steps.publish.outputs.old_git_tag }}"..main
137136
--include-path "${{ inputs.package_path }}/**"
138137
--github-repo "${{ github.repository }}"
139138
env:

0 commit comments

Comments
 (0)