-
Notifications
You must be signed in to change notification settings - Fork 27
69 lines (66 loc) · 2.08 KB
/
test.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
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Test
on:
push:
branches:
- master
pull_request:
schedule:
# monthly
- cron: "0 0 1 * *"
env:
#bump to clear caches
ACTION_CACHE_VERSION: 'v1'
jobs:
test:
strategy:
matrix:
java: ['8', '11', '17']
impl: ['clj', 'cljs']
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ env.ACTION_CACHE_VERSION }}-${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }}-${{ matrix.impl }}
restore-keys: |
${{ env.ACTION_CACHE_VERSION }}-${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }}-
${{ env.ACTION_CACHE_VERSION }}-${{ runner.os }}-maven-
- name: Prepare java
uses: actions/setup-java@v2
with:
#https://blog.adoptopenjdk.net/2021/08/goodbye-adoptopenjdk-hello-adoptium/
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/setup-node@v2
with:
node-version: '10.13.0'
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.6
- name: Test multiplier for master branch
if: ${{ github.event_name == 'push' }}
run: echo "TEST_CHECK_FACTOR=5" >> $GITHUB_ENV
- name: Test multiplier for pull requests
if: ${{ github.event_name == 'pull_request' }}
run: echo "TEST_CHECK_FACTOR=2" >> $GITHUB_ENV
- name: Test multiplier for cron
if: ${{ github.event_name == 'schedule' }}
run: echo "TEST_CHECK_FACTOR=10" >> $GITHUB_ENV
- name: Run tests
run: |
set -ex
case $TEST_IMPL in
clj) lein with-profile +ci test
;;
cljs) lein doo node node-test once
;;
*) echo "Bad impl: $TEST_IMPL"
exit 1
;;
esac
env:
TEST_IMPL: ${{ matrix.impl }}
- run: lein all-my-files-should-end-with-exactly-one-newline-character but-do-they?