From 708ce2e8a7de2d43069ecac768eb12c5c3e5c986 Mon Sep 17 00:00:00 2001 From: Eric Zhu Date: Wed, 25 Oct 2023 01:44:51 -0400 Subject: [PATCH] add ci --- .github/workflow/ci.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflow/ci.yaml diff --git a/.github/workflow/ci.yaml b/.github/workflow/ci.yaml new file mode 100644 index 0000000..28c7121 --- /dev/null +++ b/.github/workflow/ci.yaml @@ -0,0 +1,15 @@ +name: Main workflow + +on: + pull_request: + push: + +jobs: + runs-on: ubuntu-latest + if: github.event.pull_request.draft == false + + steps: + - name: make check + run: | + pip install -r requirements.txt + make check