This commit is contained in:
parent
b309bc3564
commit
7e2688404e
1 changed files with 26 additions and 0 deletions
26
.forgejo/workflows/ci.yml
Normal file
26
.forgejo/workflows/ci.yml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: temurin
|
||||
java-version: "25"
|
||||
|
||||
- uses: gradle/actions/setup-gradle@v4
|
||||
|
||||
- name: Build and test
|
||||
run: ./gradlew build --stacktrace
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: lattice
|
||||
path: build/libs/*.jar
|
||||
Loading…
Add table
Reference in a new issue