Browse Source

ci(test): use ubuntu 20.04 version to run tests

tags/v0.23.2
MinJae Kwon 1 year ago
parent
commit
bab21716fc
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      .github/workflows/test.yml

+ 6
- 6
.github/workflows/test.yml View File

@@ -5,21 +5,21 @@ on:
branches:
- master
paths:
- '.github/workflows/test.yml'
- '**.py'
- ".github/workflows/test.yml"
- "**.py"
pull_request:
branches:
- master
paths:
- '.github/workflows/test.yml'
- '**.py'
- ".github/workflows/test.yml"
- "**.py"

jobs:
test:
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9']
runs-on: ubuntu-latest
python: ["3.6", "3.7", "3.8", "3.9"]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2


Loading…
Cancel
Save