Skip to content

build(deps): bump com.github.curious-odd-man:rgxgen from 1.4 to 2.0 #411

build(deps): bump com.github.curious-odd-man:rgxgen from 1.4 to 2.0

build(deps): bump com.github.curious-odd-man:rgxgen from 1.4 to 2.0 #411

Workflow file for this run

---
name: Java CI with Gradle
on:
push:
branches: [devel, main]
pull_request:
branches: [main]
schedule:
- cron: '0 10 * * 1'
jobs:
build:
name: ${{ matrix.name }} with JDK ${{ matrix.jdk }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
jdk: [8, 11, 17]
include:
- os: macos-latest
name: macOS
- os: ubuntu-latest
name: Ubuntu
- os: windows-latest
name: Windows
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
java-version: '${{ matrix.jdk }}'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Execute Gradle build
run: ./gradlew build
- name: Execute profiling tests (stats)
run: python3 tests/gather-stats.py
- name: Execute profiling tests (memory)
run: python3 tests/run.py --mode memory --ci
- name: Execute profiling tests (time)
run: python3 tests/run.py --mode time --ci