diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2738721..9cd47b4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,6 +1,3 @@ -# This workflow will build a golang project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - name: Go on: @@ -10,16 +7,13 @@ on: branches: [ "main" ] jobs: - build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Go uses: actions/setup-go@v4 with: go-version: '1.23' - - name: Build run: go build -v ./... diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 954bac4..5e85a66 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,8 @@ permissions: contents: write packages: write +# TODO: enable for macos and windows + jobs: release-linux-amd64: name: release linux/amd64 diff --git a/README.md b/README.md index 224c914..5f7be8b 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,14 @@ A terminal-based Minesweeper game written in Go, using the `tcell` library for h - Terminal-based UI - Real-time updates with `tcell` +## Some screenshots + +![image1](./images/1.png) + +![image2](./images/2.png) + +![image3](./images/3.png) + ## Installation ### Prerequisites - Go 1.18+ installed diff --git a/images/1.png b/images/1.png new file mode 100644 index 0000000..b89de0b Binary files /dev/null and b/images/1.png differ diff --git a/images/2.png b/images/2.png new file mode 100644 index 0000000..33a8211 Binary files /dev/null and b/images/2.png differ diff --git a/images/3.png b/images/3.png new file mode 100644 index 0000000..19ce60b Binary files /dev/null and b/images/3.png differ