Skip to content

ffmasm integration

ffmasm integration #4

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: |
8
22
cache: maven
- name: Run Maven with Java 8
env:
JAVA_HOME: ${{ env.JAVA_HOME_8_x64 }}
GITHUB_TOKEN: ${{ github.token }}
run: mvn -B compile test
- name: Run Maven with Java 22
env:
JAVA_HOME: ${{ env.JAVA_HOME_22_x64 }}
GITHUB_TOKEN: ${{ github.token }}
run: mvn -B package