-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (31 loc) · 767 Bytes
/
ci.yml
File metadata and controls
36 lines (31 loc) · 767 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
name: CI
on:
workflow_dispatch:
push:
branches: ["*"]
# pull_request:
# branches: [ "*" ]
jobs:
check:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
permissions:
contents: read
steps:
- uses: huanshankeji/.github/actions/gradle-test-and-check@v0.2.0
with:
jdk-versions: 17-temurin
dependency-submission:
if: github.ref == 'refs/heads/main'
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
- uses: huanshankeji/.github/actions/gradle-dependency-submission@v0.2.0
with:
jdk-versions: 17-temurin