Bump commons-io:commons-io from 2.7 to 2.14.0 #313
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
name: macos | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
token: ${{ secrets.METANORMA_CI_PAT_TOKEN }} | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
# cabextract for fonts | |
- name: Setup prerequisites | |
run: | | |
# Install Maven | |
brew install maven | |
- name: Run tests | |
run: | | |
make test | |
- name: Build | |
run: | | |
make all | |
# - name: Compile output | |
# run: | | |
# make publish |