2020-12-04 22:22:39 +00:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-01-29 08:58:51 +00:00
|
|
|
branches: [ main ]
|
2020-12-04 22:22:39 +00:00
|
|
|
pull_request:
|
2021-01-29 08:58:51 +00:00
|
|
|
branches: [ main ]
|
2020-12-04 22:22:39 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-11-07 09:16:46 +00:00
|
|
|
test64:
|
2022-11-10 22:47:26 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2020-12-04 22:22:39 +00:00
|
|
|
|
|
|
|
steps:
|
2022-11-10 22:47:26 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-04 22:22:39 +00:00
|
|
|
|
2021-07-03 10:14:31 +00:00
|
|
|
- run: make test
|
2021-02-13 19:13:23 +00:00
|
|
|
|
2022-11-29 14:54:56 +00:00
|
|
|
- uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
2021-02-13 19:54:20 +00:00
|
|
|
|
2021-07-03 10:14:31 +00:00
|
|
|
test32:
|
2022-11-10 22:47:26 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2021-07-03 10:14:31 +00:00
|
|
|
|
|
|
|
steps:
|
2022-11-10 22:47:26 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-07-03 10:14:31 +00:00
|
|
|
|
|
|
|
- run: make test32
|
2022-11-07 09:16:46 +00:00
|
|
|
|
|
|
|
test_highlevel:
|
2022-11-10 22:47:26 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2022-11-07 09:16:46 +00:00
|
|
|
|
|
|
|
steps:
|
2022-11-10 22:47:26 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-07 09:16:46 +00:00
|
|
|
|
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
2023-10-23 12:02:53 +00:00
|
|
|
go-version: "1.21"
|
2022-11-07 09:16:46 +00:00
|
|
|
|
|
|
|
- run: make test-highlevel-nodocker
|