-
Notifications
You must be signed in to change notification settings - Fork 43
42 lines (38 loc) · 897 Bytes
/
ci.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
name: CI
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
java: [ '11' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JVM
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'sbt'
- run: git fetch --tags -f
- run:
# for git tests
git config --global user.email "scalafmt@scalameta.org" && git config --global user.name "scalafmt"
- run: sbt plugin/scripted
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
cache: 'sbt'
- run: ./bin/scalafmt --test