Advance to day of week #72
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: Makefile CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- uses: aviate-labs/[email protected] | |
with: | |
vessel-version: 0.6.3 | |
dfx-version: 0.14.1 | |
- name: install dfx | |
run: dfx cache install | |
- name: install mops | |
run: npm i ic-mops -g --yes | |
- name: Download MOPS packages | |
run: mops install | |
- name: Run Tests | |
run: make test |