From 32f8a0ccf5ebffac5ca91e85863d51e106212180 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 14 Apr 2022 10:41:15 -0700 Subject: [PATCH] Add GitHub Actions workflow to test canonical abi --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..a6efca59 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +name: CI + +on: + push: + pull_request: + +jobs: + canonical_abi: + name: Run Canonical ABI Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 + with: + python-version: '>= 3.10.0' + - run: python design/mvp/canonical-abi/run_tests.py