Browse Source

move all tests under same workflow

pull/1233/head
aler9 3 years ago
parent
commit
16580c8985
  1. 14
      .github/workflows/test.yml
  2. 20
      .github/workflows/test_highlevel.yml

14
.github/workflows/test.yml

@ -7,7 +7,7 @@ on: @@ -7,7 +7,7 @@ on:
branches: [ main ]
jobs:
test:
test64:
runs-on: ubuntu-20.04
steps:
@ -24,3 +24,15 @@ jobs: @@ -24,3 +24,15 @@ jobs:
- uses: actions/checkout@v2
- run: make test32
test_highlevel:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19"
- run: make test-highlevel-nodocker

20
.github/workflows/test_highlevel.yml

@ -1,20 +0,0 @@ @@ -1,20 +0,0 @@
name: test_highlevel
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19"
- run: make test-highlevel-nodocker
Loading…
Cancel
Save