We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c27e556 + 5444830 commit 0b3ffb0Copy full SHA for 0b3ffb0
.github/workflows/ca.yml
@@ -6,7 +6,7 @@ env:
6
CLOJURE_CLI_VERSION: "1.11.1.1347"
7
8
jobs:
9
- build:
+ check-ca:
10
if: (github.actor != 'frenchy64' || github.actor != 'dependabot') && github.repository == 'typedclojure/typedclojure'
11
runs-on: ubuntu-latest
12
steps:
.github/workflows/clj.yml
@@ -80,8 +80,13 @@ jobs:
80
- run: bb --version
81
- run: ./script-test/test_runner.clj
82
- run: ./script/check_docs.clj
83
- deploy:
+ all-pr-checks:
84
needs: test
85
+ runs-on: ubuntu-24.04
86
+ steps:
87
+ - run: echo "All tests pass!"
88
+ deploy:
89
+ needs: all-pr-checks
90
if: ${{ github.ref == 'refs/heads/main'
91
&& github.repository == 'typedclojure/typedclojure'
92
&& github.event_name == 'push'
0 commit comments