Skip to content

Commit

Permalink
Set workflow os explicitly.
Browse files Browse the repository at this point in the history
Google policy requires that specific os versions are targeted when using GitHub actions.
  • Loading branch information
tomfinegan committed Feb 9, 2021
1 parent 26ee555 commit 27f77e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-20.04
cc: gcc-10
cxx: g++-10
generator: Unix Makefiles
- os: ubuntu-latest
- os: ubuntu-20.04
cc: clang
cxx: clang++
generator: Unix Makefiles
- os: macos-latest
- os: macos-10.15
cc: gcc-10
cxx: g++-10
generator: Unix Makefiles
- os: windows-latest
- os: windows-2019
cc: x86_64-w64-mingw32-gcc
cxx: x86_64-w64-mingw32-g++
generator: MinGW Makefiles
Expand Down

0 comments on commit 27f77e1

Please sign in to comment.