Skip to content

Commit

Permalink
Merge pull request #87 from deadsnakes/3-12-distutils
Browse files Browse the repository at this point in the history
self test
  • Loading branch information
asottile authored Nov 15, 2022
2 parents 1a89222 + 90b2419 commit 7c4a392
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 7c4a392

Please sign in to comment.