diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-01-26 23:51:50 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-01-27 00:14:43 +0100 |
commit | cfa27ac6453f20e1d1f33973aa8cbfccff1d6635 (patch) | |
tree | 8c0a75618c464da8d950f630ef13652b418ae8b3 | |
parent | 5e1547a06709659c75d40a05ac924c51caffcccf (diff) | |
download | gitlab-cfa27ac6453f20e1d1f33973aa8cbfccff1d6635.tar.gz |
chore(ci): pin os version
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7db6f2..f8b108b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: unit: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: include: @@ -27,7 +27,7 @@ jobs: TOXENV: ${{ matrix.toxenv }} run: tox functional: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: toxenv: [py_func_v4, cli_func_v4] |