Skip to content

feat: 292. Nim Game #57

feat: 292. Nim Game

feat: 292. Nim Game #57

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 1.21.3
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: gomod
run: go mod tidy
- name: run codecov.sh
run: bash script/codecov.sh
- name: Publish to codecov.io
run: bash <(curl -s https://codecov.io/bash)