feat(runtime): implement Math globals #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [pull_request] | |
name: Pull Request Checks | |
jobs: | |
build: | |
strategy: | |
matrix: | |
mc: [1.16.4, 1.17.1, 1.20.6] | |
runs-on: ubuntu-latest | |
name: Build the Maven Project | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
java-package: jdk | |
- name: Build Maven project | |
working-directory: . | |
run: mvn package -PMC_${{ matrix.mc }} |