From 90b241941f5d172d2d12e7e4af665aee60a039c6 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 14 Nov 2022 21:43:41 -0500 Subject: [PATCH] self test --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ee0b833 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +on: + pull_request: + push: + branches: [main, test-me-*] + +jobs: + main: + runs-on: ubuntu-latest + strategy: + matrix: + include: + - {python: '3.7', debug: true} + - {python: '3.10-dev', debug: false} + - {python: '3.11-dev', debug: false} + - {python: '3.12-dev', debug: false} + steps: + - uses: actions/checkout@v3 + - uses: ./. + with: + python-version: ${{ matrix.python }} + debug: ${{ matrix.debug }}