Skip to content

Updates

Updates #293

Workflow file for this run

name: windows
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: windows-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
- name: Setup prerequisites
run: choco install --no-progress make gnuwin32-coreutils.install
- name: Run tests
run: |
make test SHELL=cmd
- name: Build
run: |
make all SHELL=cmd
# - name: Compile output
# run: |
# make publish SHELL=cmd