mirror of
https://github.com/hacdias/webdav.git
synced 2026-09-21 19:10:42 +08:00
31 lines
698 B
YAML
31 lines
698 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: test (${{ matrix.os }})
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- uses: actions/setup-go@v7
|
|
with:
|
|
go-version: "1.27.x"
|
|
- name: Run test with race detector and coverage
|
|
if: runner.os != 'Windows'
|
|
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
|
|
- name: Run test with coverage
|
|
if: runner.os == 'Windows'
|
|
run: go test "-coverprofile=coverage.txt" -covermode=atomic ./...
|