Add support for \autoref figure references. #28
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
# This workflow will build a Java project with Ant | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant | |
# Same as ant.yml, except that no SonarCloud scan is done since pull requests | |
# do not have access to repository secrets (and thus generate an error when | |
# attempting to use Sonar). | |
name: Build (pull request) | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Compile | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java-version: [ '11', "17", "19" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'temurin' | |
- name: Build with Ant | |
run: ant -noinput -buildfile build.xml | |
- name: Test with JUnit | |
run: ant -noinput -buildfile build.xml test |