Skip to content

Commit

Permalink
chore: fix semver checks in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-q committed Feb 5, 2025
1 parent 4054d80 commit 79228c6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/semver-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
branches:
- main

env:
LLVM_VERSION: "14.0"

jobs:
# Check if changes were made to the relevant files.
# Always returns true if running on the default branch, to ensure all changes are throughly checked.
Expand Down Expand Up @@ -42,6 +45,12 @@ jobs:
rs-semver-checks:
needs: [changes]
if: ${{ needs.changes.outputs.rust == 'true' }}
uses: CQCL/hugrverse-actions/.github/workflows/rs-semver-checks.yml@main
steps:
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: ${{ env.LLVM_VERSION }}
- uses: CQCL/hugrverse-actions/.github/workflows/rs-semver-checks.yml@main

secrets:
GITHUB_PAT: ${{ secrets.HUGRBOT_PAT }}

0 comments on commit 79228c6

Please sign in to comment.