.github: remove unnecessary matrix parameters (#275)

Remove GitHub Actions job matrix parameters which only have one option.  These
parameters clutter the action names.
This commit is contained in:
Michael McLoughlin
2022-05-01 13:41:32 -07:00
committed by GitHub
parent 9aff8ef21e
commit a746f32c01
2 changed files with 6 additions and 15 deletions

View File

@@ -12,16 +12,12 @@ on:
- "tests/thirdparty/**"
jobs:
test:
strategy:
matrix:
go-version: [1.18.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab # v3.0.0
with:
go-version: ${{ matrix.go-version }}
go-version: 1.18.x
check-latest: true
- name: Checkout code
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4