From 18353f8a213e05e7788a9d30f31f0d9bf63b50a3 Mon Sep 17 00:00:00 2001 From: Tristan Morgan Date: Thu, 14 Mar 2024 14:46:05 +1100 Subject: [PATCH] Add a built status badge and tweak go cache. --- .github/workflows/go-test-build.yml | 2 ++ README.md | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/go-test-build.yml b/.github/workflows/go-test-build.yml index e672c1c..c8d024d 100644 --- a/.github/workflows/go-test-build.yml +++ b/.github/workflows/go-test-build.yml @@ -19,6 +19,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: '1.22' + cache: false - name: Tidy run: go mod tidy @@ -43,6 +44,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: '1.22' + cache: false - name: Build working-directory: ./cmd/bfg diff --git a/README.md b/README.md index 1fca2a9..950f56b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ ## B.F.G. + +[![Go](https://github.com/tristanmorgan/bfg/actions/workflows/go-test-build.yml/badge.svg)](https://github.com/tristanmorgan/bfg/actions/workflows/go-test-build.yml) + BFG is an optimised [Brainfuck](https://esolangs.org/wiki/Brainfuck) interpreter written in Go. Uses signed ints for data (platform specific 32/64), memory wraps around at 65535, EOF returns -1.