diff options
author | Taneli Hukkinen <hukkinj1@users.noreply.github.com> | 2021-02-09 19:10:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-09 09:10:39 -0800 |
commit | d7f3eebbc1b8b2d06633dacd4c81de1386b9b3fa (patch) | |
tree | d57d0f85dd2b836e6f582254e171c3143a4c1217 /.github/workflows/release.yml | |
parent | 76e491cf407d598734d677a912fbc01b4c46a580 (diff) | |
download | immutables-d7f3eebbc1b8b2d06633dacd4c81de1386b9b3fa.tar.gz immutables-d7f3eebbc1b8b2d06633dacd4c81de1386b9b3fa.zip |
Test Python 3.9 (#51)
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c992bda..7e2c51b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,13 +45,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: fetch-depth: 50 submodules: true - name: Set up Python 3.7 - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: 3.7 @@ -70,7 +70,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.5, 3.6, 3.7, 3.8, 3.9] os: [ubuntu-16.04, macos-latest, windows-latest] exclude: # Python 3.5 is unable to properly @@ -80,13 +80,13 @@ jobs: python-version: 3.5 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: fetch-depth: 50 submodules: true - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} @@ -130,7 +130,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: fetch-depth: 5 submodules: false |