diff --git a/.github/workflows/pullRequest.yml b/.github/workflows/pullRequest.yml index 9284177..535a519 100644 --- a/.github/workflows/pullRequest.yml +++ b/.github/workflows/pullRequest.yml @@ -7,4 +7,23 @@ on: jobs: build: - uses: ./.github/workflows/testAndBuild.yml + runs-on: windows-latest + + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + architecture: x86 + python-version: 3.8 + cache: pip + + - name: Install requirements + run: | + python -m pip install -r requirements.txt + + - name: run scons + run: scons +