Skip to content

Commit 838e063

Browse files
authored
Merge pull request #24 from alexcrichton/actions-test
Add GitHub Actions workflow to test canonical abi
2 parents 171e706 + 32f8a0c commit 838e063

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
canonical_abi:
9+
name: Run Canonical ABI Tests
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v3
14+
with:
15+
python-version: '>= 3.10.0'
16+
- run: python design/mvp/canonical-abi/run_tests.py

0 commit comments

Comments
 (0)