forked from kepler16/kmono
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 831 Bytes
/
test.yml
File metadata and controls
39 lines (33 loc) · 831 Bytes
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
name: Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout git repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 25
cache: 'maven'
cache-dependency-path: '**/deps.edn'
- uses: extractions/setup-just@v2
- uses: DeLaGuardo/setup-clojure@12.5
with:
cli: latest
- name: Setup Git
run: |
git config --global user.email "ci@kepler16.com"
git config --global user.name "Kmono CI"
- name: Test
run: |
just test \
--run-in-order false \
--changed-since origin/master