diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 00000000..a35fce1d --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,20 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Turnt tests + +on: + push: + branches: [ $default-branch ] + pull_request: + branches: [ $default-branch ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build docker images + run: docker build -t local . + - name: Run tests + run: docker run -it -v $PWD:/srv -w/srv local turnt src/backend/tests/*/*.sexp