return 404 if a non-sprt run_id is abused to be used in a live_elo link #119
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI worker msys2 | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
include: | |
- { sys: mingw64, env: x86_64, comp: gcc } | |
- { sys: ucrt64, env: ucrt-x86_64, comp: gcc } | |
- { sys: clang64, env: clang-x86_64, comp: clang } | |
defaults: | |
run: | |
shell: msys2 {0} | |
working-directory: worker | |
steps: | |
- name: Setup msys and install required packages | |
uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
msystem: ${{ matrix.sys }} | |
install: >- | |
make | |
mingw-w64-${{ matrix.env }}-python3 | |
mingw-w64-${{ matrix.env }}-${{ matrix.comp }} | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Add packages folder to PYTHONPATH | |
run: | | |
echo "PYTHONPATH=$(pwd)/packages" >> $GITHUB_ENV | |
- name: Run worker tests | |
run: | | |
python -m unittest discover -vb -s tests |