File tree Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Expand file tree Collapse file tree 4 files changed +36
-3
lines changed 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 @@ -73,8 +73,7 @@ Developer Information
7373
7474* [ GitHub project] ( https://github.com/clojure/tools.reader )
7575* [ Bug Tracker] ( https://clojure.atlassian.net/browse/TRDR )
76- * [ Continuous Integration] ( https://build.clojure.org/job/tools.reader/ )
77- * [ Compatibility Test Matrix] ( https://build.clojure.org/job/tools.reader-test-matrix/ )
76+ * [ Continuous Integration] ( https://github.com/clojure/tools.reader/actions/workflows/test.yml )
7877
7978Example Usage
8079========================================
@@ -176,6 +175,6 @@ There are small differences from clojure.lang.LispReader:
176175
177176## License
178177
179- Copyright © 2013-2018 Nicola Mometto, Rich Hickey & contributors.
178+ Copyright © 2013-2023 Nicola Mometto, Rich Hickey & contributors.
180179
181180Licensed under the EPL. (See the file epl.html.)
You can’t perform that action at this time.
0 commit comments