Skip to content

Commit

Permalink
Upgrade go and change the default branch (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
regeda authored Jan 1, 2024
1 parent f4393a2 commit 41734a9
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 19 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
push:

jobs:
test:
name: Go Test
runs-on: ubuntu-latest
steps:
-
name: Check out code
uses: actions/checkout@v4
-
name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
-
name: Go Test
shell: bash
run: go test -v -race -cover -coverprofile=coverage.out
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Anthony Regeda
Copyright (c) 2024 Anthony Regeda

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Minesweeper
[![Build Status](https://travis-ci.org/regeda/minesweeper.svg?branch=master)](https://travis-ci.org/regeda/minesweeper)
[![codecov](https://codecov.io/gh/regeda/minesweeper/branch/master/graph/badge.svg)](https://codecov.io/gh/regeda/minesweeper)

Golang implementation of Minesweeper game API.

Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
module github.com/regeda/minesweeper

go 1.15
go 1.21.5

require github.com/stretchr/testify v1.6.1

require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)

0 comments on commit 41734a9

Please sign in to comment.