Skip to content

Commit

Permalink
Enable python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
davfsa committed Jan 21, 2021
1 parent 95e28d2 commit 891c843
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
# Allows for matrix sub-jobs to fail without canceling the rest
fail-fast: false
matrix:
os: [ubuntu-18.04, windows-latest]
python-version: [3.8, 3.9]
os: [ubuntu-20.04, macos-11.0, windows-2019]
python-version: [3.8, 3.9, 3.10.0-alpha.4]
image: [null]
include:
- os: ubuntu-18.04
- os: ubuntu-20.04
python-version: null
image: davfsa/stackless-python-hikari:3.8.0b3

Expand All @@ -42,7 +42,7 @@ jobs:
nox -s pytest-speedups -- --cov-append
- name: Upload report
if: ${{ matrix.os == 'ubuntu-18.04' && matrix.python-version == '3.8' }}
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.python-version == '3.8' }}
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
Expand All @@ -51,7 +51,7 @@ jobs:
--id "d40e64ea0ff74713f79365fea4378ab51a2141ad4fcf0fb118496bbf560d4192"
linting:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name: Checkout repo
Expand All @@ -70,7 +70,7 @@ jobs:
nox -s safety mypy flake8
twemoji:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name: Checkout repo
Expand All @@ -89,7 +89,7 @@ jobs:
nox -s twemoji-test
pages:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name: Checkout repo
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
if: github.event.release.published
needs: [test, linting, twemoji, pages]

runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down

0 comments on commit 891c843

Please sign in to comment.