- the model defines them as strings and can parse them either as string or their effective type (boolean, number) - add workflow validation when reading all testdata - add fail-fast, max-parallel, timeout-minutes, cancel-timeout-minutes to test workflows in the jobparser tests Reviewed-on: https://code.forgejo.org/forgejo/act/pulls/203 Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: Earl Warren <contact@earl-warren.org> Co-committed-by: Earl Warren <contact@earl-warren.org>
15 lines
343 B
YAML
15 lines
343 B
YAML
name: test
|
|
jobs:
|
|
job1:
|
|
strategy:
|
|
fail-fast: true
|
|
max-parallel: 5
|
|
matrix:
|
|
os: [ubuntu-22.04, ubuntu-20.04]
|
|
version: [1.17, 1.18, 1.19]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.version }}
|
|
- run: uname -a && go version
|