From 51f75886f43b6d11ceb7d4f04670c2d40b3a541f Mon Sep 17 00:00:00 2001 From: John Reese Date: Thu, 29 Oct 2020 00:04:16 -0700 Subject: [PATCH] Enable 3.9 builds --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 030fa52..3c76a8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,14 +13,14 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8] + python-version: ["3.6", "3.7", "3.8", "3.9"] os: [macOS-latest, ubuntu-latest, windows-latest] steps: - name: Checkout uses: actions/checkout@v1 - name: Set Up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install @@ -32,6 +32,7 @@ jobs: run: make test - name: Lint run: make lint + if: ${{ matrix.python-version != '3.9' }} - name: Coverage run: codecov --token ${{ secrets.CODECOV_TOKEN }} --branch ${{ github.ref }} continue-on-error: true