Add .mill-version file #8
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] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
container: archlinux/archlinux:latest | |
steps: | |
- name: Install dependencies | |
run: pacman -Syu --noconfirm make mill z3 | |
- uses: actions/checkout@v2 | |
- name: Check Format | |
run: make checkformat | |
- name: Test | |
run: make test |