Skip to content

Commit 5b97f0e

Browse files
authored
Merge pull request #3 from YKraml/clean_main
Large rework
2 parents 7807fe7 + 8df0e17 commit 5b97f0e

File tree

3,104 files changed

+2775684
-15866
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,104 files changed

+2775684
-15866
lines changed

.factorypath

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/maven.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: Build and Test with Maven
10+
11+
on:
12+
push:
13+
branches: [ "main" ]
14+
pull_request:
15+
branches: [ "main" ]
16+
17+
jobs:
18+
Compile:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Set up JDK 21
23+
uses: actions/setup-java@v4
24+
with:
25+
java-version: '21'
26+
distribution: 'temurin'
27+
cache: maven
28+
- name: Compile with Maven
29+
run: mvn --batch-mode --update-snapshots compile
30+
Verify:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- name: Set up JDK 21
35+
uses: actions/setup-java@v4
36+
with:
37+
java-version: '21'
38+
distribution: 'temurin'
39+
cache: maven
40+
- name: Verify with Maven
41+
run: mvn --batch-mode --update-snapshots verify

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ target/**
55
.settings/**
66
.classpath
77
.vscode/
8+
**/z3/**
9+
.idea/**

0 commit comments

Comments
 (0)