diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eac2f4c..3177ed4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,14 +16,15 @@ jobs: build: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] - python-version: [ '3.7', '3.8', '3.9', '3.10' ] + python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] name: Python ${{ matrix.os }} ${{ matrix.python-version }} sample steps: - uses: actions/checkout@v2 - name: Setup python - uses: actions/setup-python@v2 + uses: chia-network/actions/setup-python@main with: python-version: ${{ matrix.python-version }} architecture: x64