mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
.github/workflow: clean up the YAML
This commit is contained in:
parent
c3b712a54e
commit
cdd46912dc
10
.github/workflows/test.yml
vendored
10
.github/workflows/test.yml
vendored
@ -84,17 +84,11 @@ jobs:
|
||||
run: |
|
||||
go build -tags=example,ebitencbackend -v ./...
|
||||
|
||||
- name: go test (Go 1.16 or older)
|
||||
# TODO: Add more test environments (#1305)
|
||||
if: ${{ startsWith(matrix.os, 'ubuntu-') && (startsWith(matrix.go, '1.15.') || startsWith(matrix.go, '1.16.')) }}
|
||||
run: |
|
||||
go test -tags=example -v ./...
|
||||
|
||||
- name: go test
|
||||
# TODO: Add more test environments (#1305)
|
||||
if: ${{ startsWith(matrix.os, 'ubuntu-') && !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') }}
|
||||
if: ${{ startsWith(matrix.os, 'ubuntu-')
|
||||
run: |
|
||||
go test -tags=example -shuffle=on -v ./...
|
||||
go test -tags=example ${{ !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && '-shuffle=on' || '' }} -v ./...
|
||||
|
||||
- name: go test (Wasm)
|
||||
# TODO: Investigate times out on Windows. (#1313)
|
||||
|
Loading…
Reference in New Issue
Block a user