-
Notifications
You must be signed in to change notification settings - Fork 441
Expand file tree
/
Copy pathmotoko-random_maze-example.yaml
More file actions
40 lines (40 loc) · 1.04 KB
/
motoko-random_maze-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-random_maze
on:
push:
branches:
- master
pull_request:
paths:
- motoko/random_maze/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/motoko-random_maze-example.yaml
- .ic-commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
motoko-random_maze-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v1
- name: Provision Darwin
run: bash .github/workflows/provision-darwin.sh
- name: Motoko Random Maze Darwin
run: |
dfx start --background
pushd motoko/random_maze
make test
popd
motoko-random_maze-linux:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Motoko Random Maze Linux
run: |
dfx start --background
pushd motoko/random_maze
make test
popd