Skip to content

Bump docker/setup-buildx-action from 2 to 3 #1512

Bump docker/setup-buildx-action from 2 to 3

Bump docker/setup-buildx-action from 2 to 3 #1512

Workflow file for this run

name: Test
'on':
push:
pull_request:
# schedule:
# - cron: "0 6 * * *"
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version:
- 3.7
- 3.8
- 3.9
- '3.10'
- 3.11
- 'pypy-3.8'
platform:
- ubuntu-latest
# - macos-latest
# - windows-latest
exclude:
# Pytest is busted on pypy3+windows
- python-version: pypy3
platform: windows-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: jayclassless/setup-poetry-action@v1
- name: Checkout Code
uses: actions/checkout@v3
- name: Install TidyPy
run: |
make setup
make env
- name: Test
run: |
make test