From 598d3fb73b63237e377478d5cfe80b01924a8c61 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 28 Jul 2023 12:36:03 -0600 Subject: [PATCH] .github/workflows/ci: Fix branch and add 3.11 Signed-off-by: Zack Cerza --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7ed515..99c2eb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,10 +3,10 @@ name: CI on: push: branches: - - master + - main pull_request: branches: - - master + - main workflow_dispatch: jobs: @@ -15,12 +15,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] - python: [3.6, 3.9] + os: ["ubuntu-20.04"] + python: [3.6, 3.9, 3.11] steps: - uses: actions/checkout@v2 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python }} - name: Install tox