Skip to content

Move file that is mismatched #84

Move file that is mismatched

Move file that is mismatched #84

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
repository_dispatch:
schedule:
- cron: '05 5 1 * *' # <https://crontab.guru/#05_5_1_*_*> - "At 05:05 on day-of-month 1"
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go environment
uses: actions/[email protected]
- name: Build
run: go build -v ./...
- name: test
run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic