Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Matting committed Apr 15, 2024
1 parent bd5527f commit c35934e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c35934e

Please sign in to comment.