-
Notifications
You must be signed in to change notification settings - Fork 439
40 lines (40 loc) · 1.04 KB
/
motoko-cert_var-example.yaml
File metadata and controls
40 lines (40 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: motoko-cert-var
on:
push:
branches:
- master
pull_request:
paths:
- motoko/cert-var/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/motoko-cert_var-example.yaml
- .ic-commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
motoko-cert-var-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v1
- name: Provision Darwin
run: bash .github/workflows/provision-darwin.sh
- name: Motoko Certified Variable Darwin
run: |
dfx start --background
pushd motoko/cert-var
make test
popd
motoko-cert-var-linux:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Motoko Certified Variable Linux
run: |
dfx start --background
pushd motoko/cert-var
make test
popd