From c35934e8a5e13886915bc541b0c04878194a8bee Mon Sep 17 00:00:00 2001 From: Stefan Matting Date: Mon, 15 Apr 2024 14:09:38 +0200 Subject: [PATCH] add github action --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..8ece506 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: build + +on: + push: + branches: [ main ] + +jobs: + build: + runs-on: macos-11 + steps: + - name: Checkout + uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.10' + - run: + python3 -m venv venv + source venv/bin/activate + pip install -r requirements.txt + pip install -r requirements-stage2.txt + ./scripts/build.sh