File tree Expand file tree Collapse file tree 5 files changed +30
-19
lines changed
Expand file tree Collapse file tree 5 files changed +30
-19
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+
6+ jobs :
7+ test :
8+ name : Go Test
9+ runs-on : ubuntu-latest
10+ steps :
11+ -
12+ name : Check out code
13+ uses : actions/checkout@v4
14+ -
15+ name : Set up Go
16+ uses : actions/setup-go@v5
17+ with :
18+ go-version-file : ' go.mod'
19+ -
20+ name : Go Test
21+ shell : bash
22+ run : go test -v -race -cover -coverprofile=coverage.out
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2019 Anthony Regeda
3+ Copyright (c) 2024 Anthony Regeda
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 11# Minesweeper
2- [ ![ Build Status] ( https://travis-ci.org/regeda/minesweeper.svg?branch=master )] ( https://travis-ci.org/regeda/minesweeper )
3- [ ![ codecov] ( https://codecov.io/gh/regeda/minesweeper/branch/master/graph/badge.svg )] ( https://codecov.io/gh/regeda/minesweeper )
42
53Golang implementation of Minesweeper game API.
64
Original file line number Diff line number Diff line change 11module github.com/regeda/minesweeper
22
3- go 1.15
3+ go 1.21.5
44
55require github.com/stretchr/testify v1.6.1
6+
7+ require (
8+ github.com/davecgh/go-spew v1.1.0 // indirect
9+ github.com/pmezard/go-difflib v1.0.0 // indirect
10+ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
11+ )
You can’t perform that action at this time.
0 commit comments