Skip to content

Merge pull request #9 from LeoLiuYan/fix/remove_outputfile_suffix #515

Merge pull request #9 from LeoLiuYan/fix/remove_outputfile_suffix

Merge pull request #9 from LeoLiuYan/fix/remove_outputfile_suffix #515

Workflow file for this run

name: CI
on: [ push ]
jobs:
build:
strategy:
matrix:
# os: [ macos-latest, ubuntu-latest, windows-latest ]
# Windows offers timeouts: https://github.com/unit-mesh/unit-gen/actions/runs/7101623294/job/19331414199
os: [ macos-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 10
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Setup Gradle
uses: gradle/[email protected]
with:
arguments: build
- name: Execute Gradle build
run: ./gradlew build
- name: Execute Gradle Coverage
run: ./gradlew check
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}