Skip to content

Commit

Permalink
ci: exclude versioned formulae from the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tgragnato committed Dec 4, 2024
1 parent d76cb12 commit 5cb786d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
with:
script: |
const { execSync } = require('child_process');
const formulae = execSync('find Formula -name "*.rb" -exec basename {} .rb \\;')
const formulae = execSync('find Formula -name "*.rb" ! -name "*@*.rb" -exec basename {} .rb \\;')
.toString()
.trim()
.split('\n');
Expand Down

0 comments on commit 5cb786d

Please sign in to comment.