File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release on demand
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ releaseVersion :
7+ description : " Version to release"
8+ required : true
9+ snapshotVersion :
10+ description : " Snapshot version after release"
11+ required : true
12+
13+ jobs :
14+ call-release :
15+ uses : clojure/build.ci/.github/workflows/release.yml@master
16+ with :
17+ releaseVersion : ${{ github.event.inputs.releaseVersion }}
18+ snapshotVersion : ${{ github.event.inputs.snapshotVersion }}
19+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : Snapshot on demand
2+
3+ on : [workflow_dispatch]
4+
5+ jobs :
6+ call-snapshot :
7+ uses : clojure/build.ci/.github/workflows/snapshot.yml@master
8+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on : [push]
4+
5+ jobs :
6+ call-test :
7+ uses : clojure/build.ci/.github/workflows/test.yml@master
Original file line number Diff line number Diff line change @@ -234,11 +234,10 @@ Developer Information
234234
235235* [ GitHub project] ( https://github.com/clojure/tools.analyzer )
236236* [ Bug Tracker] ( https://clojure.atlassian.net/browse/TANAL )
237- * [ Continuous Integration] ( https://build.clojure.org/job/tools.analyzer/ )
238- * [ Compatibility Test Matrix] ( https://build.clojure.org/job/tools.analyzer-test-matrix/ )
237+ * [ Continuous Integration] ( https://github.com/clojure/tools.analyzer/actions/workflows/test.yml )
239238
240239## License
241240
242- Copyright © 2013-2018 Nicola Mometto, Rich Hickey & contributors.
241+ Copyright © 2013-2023 Nicola Mometto, Rich Hickey & contributors.
243242
244243Distributed under the Eclipse Public License, the same as Clojure.
You can’t perform that action at this time.
0 commit comments