Using HTML Entities for math symbols. #15
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: quantLab Numerical Methods Exercise Workflow (GitHub Classroom) | |
on: [push] | |
jobs: | |
build: | |
name: Autograding | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml -DskipTests=true | |
- name: Testing your Application (Autograding) | |
uses: education/autograding@v1 | |