Skip to content

Commit 41734a9

Browse files
authored
Upgrade go and change the default branch (#1)
1 parent f4393a2 commit 41734a9

File tree

5 files changed

+30
-19
lines changed

5 files changed

+30
-19
lines changed

.github/workflows/test.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Anthony Regeda
3+
Copyright (c) 2024 Anthony Regeda
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
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

53
Golang implementation of Minesweeper game API.
64

go.mod

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
module github.com/regeda/minesweeper
22

3-
go 1.15
3+
go 1.21.5
44

55
require 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+
)

0 commit comments

Comments
 (0)