Skip to content

Commit

Permalink
Rewrite CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
FWDekker committed Dec 1, 2023
1 parent 5684c54 commit 93e220f
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 16 deletions.
55 changes: 39 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,55 @@ on:
- '.github/img/**'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Run checks (Ubuntu)
if: matrix.os == 'ubuntu-latest'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Run tests
run: |
chmod +x ./gradlew
sudo apt install -y xvfb
xvfb-run --auto-servernum ./gradlew --no-daemon check
./gradlew --stop
- name: Run checks (Windows)
if: matrix.os == 'windows-latest'
- name: Store coverage report
uses: actions/upload-artifact@v3
with:
name: coverage
path: build/reports/kover/report.xml

test-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Run tests
run: |
./gradlew --no-daemon check
./gradlew --stop
- uses: codecov/codecov-action@v3
if: success() && matrix.os == 'ubuntu-latest'
upload-coverage:
needs: [ test-linux, test-windows ]
runs-on: ubuntu-latest
steps:
- name: Load coverage report
uses: actions/download-artifact@v3
with:
name: coverage
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: build/reports/kover/report.xml
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## Unreleased
(empty)


## 3.0.0 -- 2023-11-17
This release brings a major overhaul of how data is generated, allowing you to create your own data types such as IP
addresses or entire JSON objects.
Expand Down

0 comments on commit 93e220f

Please sign in to comment.