From ba0a858483a8e1eccab2580a8721ce782daade0c Mon Sep 17 00:00:00 2001 From: Lann Martin Date: Fri, 19 Jul 2024 09:40:33 -0400 Subject: [PATCH] factors: Add simple CI Signed-off-by: Lann Martin --- .github/workflows/factors.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/factors.yml diff --git a/.github/workflows/factors.yml b/.github/workflows/factors.yml new file mode 100644 index 0000000000..e7b2c080cc --- /dev/null +++ b/.github/workflows/factors.yml @@ -0,0 +1,20 @@ +# TODO: remove after factors branch passes regular CI +name: Factors +on: + push: + branches: ["factors"] + pull_request: + branches: ["factors"] +jobs: + factors-tests: + runs-on: ubuntu-22.04-4core-spin + steps: + - uses: actions/checkout@v3 + - name: setup dependencies + uses: ./.github/actions/spin-ci-dependencies + with: + rust: true + rust-wasm: true + rust-cache: true + - name: Run factors tests + run: ./run-factors-tests.sh