From 08d9600ab0eaf50f94cf4c89557291290a0b050d Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Wed, 21 Sep 2022 14:32:00 -0400 Subject: [PATCH] Python 3.11 (#117) * Python 3.11 * uses: chia-network/actions/setup-python@main * fail-fast: false * Update main.yml * Update main.yml * add macos Signed-off-by: Harry Hsu --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1c688569..6890f31c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,19 +14,20 @@ on: jobs: build: + name: Python ${{ matrix.os }} ${{ matrix.python-version }} sample runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] - python-version: [ '3.7', '3.8', '3.9', '3.10' ] - name: Python ${{ matrix.os }} ${{ matrix.python-version }} sample + os: [macos-latest, ubuntu-latest, windows-latest] + python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 with: fetch-depth: 0 # we need fetch-depth 0 so setuptools_scm can resolve tags - name: Setup python - uses: actions/setup-python@v2 + uses: chia-network/actions/setup-python@main with: python-version: ${{ matrix.python-version }} architecture: x64