-
Notifications
You must be signed in to change notification settings - Fork 463
36 lines (26 loc) · 784 Bytes
/
ci-wake.yml
File metadata and controls
36 lines (26 loc) · 784 Bytes
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
name: ci - Wake
on:
workflow_dispatch:
jobs:
tests:
name: Wake Testing
runs-on: ubuntu-latest
strategy:
matrix:
profile: [via-ir-off, via-ir-on]
steps:
- uses: actions/checkout@v6
- name: Setup Wake
uses: Ackee-Blockchain/wake-setup-action@0.1.0
- name: Install Dependencies
run: forge install
- name: Move Wake test files
run: mv ext/wake tests && mv tests/wake.toml .
- name: Generate pytypes with via-ir-on
if: ${{ matrix.profile }} == 'via-ir-on'
run: wake init pytypes --via-ir
- name: Generate pytypes with via-ir-off
if: ${{ matrix.profile }} == 'via-ir-off'
run: wake init pytypes --no-via-ir
- name: Run tests
run: wake test