Skip to content

netlib try

netlib try #206

Workflow file for this run

name: CI
on: [push]
#env:
# DNS_HOST: docker
# SKIP_LDAP: true
# SKIP_MAIL: true
# SKIP_ORACLE: true
# SKIP_COMMIT: true
jobs:
test:
#runs-on: ubuntu-22.04
runs-on: ubuntu-latest
services:
docker:
image: docker:dind
options: --privileged
ports:
- 2375:2375
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
check-latest: true
- name: Install dependencies
run: |
go mod tidy
go mod vendor
- name: Test
env:
# GitHub copies the files with api, not as clone, check fails
# https://github.com/actions/checkout/issues/335
SKIP_COMMIT: true
run: go test -v ./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
lint:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
check-latest: true
cache: false
- uses: "golangci/golangci-lint-action@v6"
with:
version: "v1.60.1"
args: --timeout=10m
skip-cache: true