2022-01-17 14:01:58 +01:00
|
|
|
name: Test Code Linux
|
2022-01-25 09:40:28 +01:00
|
|
|
on: [push,pull_request]
|
2021-06-03 11:39:19 +02:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-21 10:02:25 +01:00
|
|
|
go-version: [1.17.x]
|
2021-06-03 11:39:19 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
2022-01-10 18:43:13 +01:00
|
|
|
- name: update limits.d
|
|
|
|
run: |
|
|
|
|
cat <<'EOF' | sudo tee -a /etc/security/limits.d/wt.conf
|
|
|
|
root soft nproc 65535
|
|
|
|
root hard nproc 65535
|
|
|
|
root soft nofile 65535
|
|
|
|
root hard nofile 65535
|
|
|
|
$(whoami) soft nproc 65535
|
|
|
|
$(whoami) hard nproc 65535
|
|
|
|
$(whoami) soft nofile 65535
|
|
|
|
$(whoami) hard nofile 65535
|
|
|
|
EOF
|
2022-01-17 14:01:58 +01:00
|
|
|
|
|
|
|
- name: Cache Go modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
|
|
|
|
2021-06-03 11:39:19 +02:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2022-01-17 14:01:58 +01:00
|
|
|
|
|
|
|
- name: Install modules
|
|
|
|
run: go mod tidy
|
|
|
|
|
2021-06-03 11:39:19 +02:00
|
|
|
- name: Test
|
2022-01-17 14:01:58 +01:00
|
|
|
run: GOBIN=$(which go) && sudo --preserve-env=GOROOT $GOBIN test ./...
|