diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 18622e6..2916114 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,9 +15,10 @@ jobs: name: Build runs-on: ubuntu-latest strategy: + fail-fast: false matrix: go: [1.13, 1.14, 1.15, 1.16] - + steps: - name: Set up Go 1.x uses: actions/setup-go@v3 diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index caf68de..a02b95c 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -17,6 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: # test against latest update of each major Java version, as well as specific updates of LTS versions: java: [7, 8, 9, 11, 12, 13, 14, 15, 16, 17] diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 8b36b68..962c990 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -13,8 +13,9 @@ jobs: build: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/ts.yml b/.github/workflows/ts.yml index 0af0608..b771694 100644 --- a/.github/workflows/ts.yml +++ b/.github/workflows/ts.yml @@ -15,8 +15,9 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - node-version: [10.x, 12.x, 14.x, 16.x] + node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2