-
Notifications
You must be signed in to change notification settings - Fork 29
56 lines (43 loc) · 1.16 KB
/
no_auth.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: No Auth test
on:
push:
branches:
- main
jobs:
no-auth-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "21"
- name: Install all the tools
uses: ./
with:
cli: latest
lein: latest
boot: latest
bb: latest
clj-kondo: latest
cljstyle: latest
zprint: latest
# Explicit empty string should trigger "no auth" workflow
# this will not set Authorisation header for any GitHub API http calls
github-token: ''
- name: Check Clojure CLI
run: clojure -Sdescribe
- name: Check leiningen version
run: lein version
- name: Check boot version
run: boot -V
- name: Check babashka version
run: bb --version
- name: Check clj-kondo version
run: clj-kondo --version
- name: Check cljstyle version
run: cljstyle version
- name: Check zprint version
run: zprint --version