Skip to content

Commit

Permalink
Adds README.md, LICENSE, and a GitHub Actions CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed Jan 28, 2024
1 parent 0bca0d8 commit 00958dd
Show file tree
Hide file tree
Showing 3 changed files with 726 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on: [push]

jobs:
build:
runs-on: [ubuntu-22.04]

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
with:
maven-version: 3.9.6
- name: Build with Maven
run: |
cd org.example.codegen
mvn --batch-mode --update-snapshots package
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: org.example.codegen
path: org.example.codegen/target/org.example.codegen-*.jar
Loading

0 comments on commit 00958dd

Please sign in to comment.