mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.5 KiB
YAML
46 lines
1.5 KiB
YAML
on: [push, pull_request]
|
|
name: Test
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
go-versions:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
versions: ${{ steps.versions.outputs.value }}
|
|
steps:
|
|
- id: versions
|
|
run: |
|
|
versions=$(curl -s 'https://go.dev/dl/?mode=json' | jq -c 'map(.version[2:])')
|
|
echo "::set-output name=value::${versions}"
|
|
test:
|
|
needs: go-versions
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go-version: ${{fromJson(needs.go-versions.outputs.versions)}}
|
|
os: [ubuntu-22.04, ubuntu-20.04, windows-2022, windows-2019, macos-11, macos-12, macos-13, macos-14]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
|
|
- id: go-env
|
|
run: |
|
|
echo "::set-output name=cache::$(go env GOCACHE)"
|
|
echo "::set-output name=mod-cache::$(go env GOMODCACHE)"
|
|
- name: Cache go modules
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
|
with:
|
|
path: |
|
|
${{ steps.go-env.outputs.cache }}
|
|
${{ steps.go-env.outputs.mod-cache }}
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: ${{ runner.os }}-go-
|
|
- name: Test
|
|
run: |
|
|
go test -coverprofile='coverage.out' -covermode=atomic ./...
|