diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-19 12:22:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-19 12:22:55 +0300 |
commit | 13888629d461c5c2faebd783ca8e847e606450e0 (patch) | |
tree | 8e7c32c65ba09acf4380f6396a5a852d94936ae0 /.github/workflows/basic.yml | |
parent | workflows/basic: test w/ latest Python (diff) | |
download | cmake-common-13888629d461c5c2faebd783ca8e847e606450e0.tar.gz cmake-common-13888629d461c5c2faebd783ca8e847e606450e0.zip |
workflows: use -latest images where appropriate
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/basic.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index a92e708..d1883b6 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -10,18 +10,18 @@ on: jobs: lint: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: Linting steps: - name: Checkout uses: actions/checkout@v2 - name: Run clang-format - run: ./tools/project-clang-format.py --clang-format clang-format-10 + run: ./tools/project-clang-format.py os: strategy: matrix: - os: [ubuntu-20.04, windows-2016, windows-2019] + os: [ubuntu-18.04, ubuntu-20.04, windows-2016, windows-2019] include: - boost-version: 1.72.0 runs-on: '${{ matrix.os }}' @@ -55,7 +55,7 @@ jobs: matrix: python-version: [3.6, 3.7, 3.8, 3.9, 3.x] include: - - os: ubuntu-20.04 + - os: ubuntu-latest - boost-version: 1.72.0 runs-on: '${{ matrix.os }}' name: 'Python ${{ matrix.python-version }}' @@ -88,7 +88,7 @@ jobs: publish: # TODO: figure out how to add a dependency on the *toolsets workflows. needs: [lint, os, python-versions] - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: Publish steps: - name: Checkout |