Skip to content

Commit

Permalink
Merge pull request #6 from mdb/mdb/add-note-to-readme
Browse files Browse the repository at this point in the history
improve README
  • Loading branch information
mdb committed Feb 10, 2022
2 parents 520662d + d252a52 commit 9ca4475
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/main.yml
@@ -1,18 +1,28 @@
name: CI/CD

on: [push, pull_request]
on:
pull_request:
paths-ignore:
- '**/README.md'
push:
branches:
- main
paths-ignore:
- '**/README.md'

jobs:
build-snapshot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: make
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: make
- name: Ensure unique version
run: make check-tag

build-and-publish-release:
if: github.ref == 'refs/heads/main'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,4 +1,4 @@
VERSION = 0.0.6
VERSION = 0.0.7
SOURCE = ./...

.DEFAULT_GOAL := build
Expand Down
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -15,6 +15,7 @@ A Go-based CLI implementation of [Josh Wardle](https://powerlanguage.co.uk)'s [W
Mac OS [homebrew](https://brew.sh/) users:

```
brew tap mdb/homebrew-repo
brew install wordle
```

Expand Down Expand Up @@ -55,4 +56,6 @@ make

* Could https://github.com/rivo/tview enable some UI improvements? Or is that overkill?
* Would it be cool to provide an option to output the final grid as an image, such that it could be shared?
* Would it be cool to provide an option to output stats?
* Would it be cool to restrict game play to once/day?
* Would it be cool to restrict game play to once/day?

0 comments on commit 9ca4475

Please sign in to comment.