diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..4779c39 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: ci + +on: + pull_request: + branches: [addtests] + +jobs: + tests: + name: Tests + 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: "1.25.1" + + - name: Force Failure + run: (exit 1) + diff --git a/README.md b/README.md index 1c59647..116e3f3 100644 --- a/README.md +++ b/README.md @@ -43,3 +43,4 @@ To install the `gator` CLI tool to your `$GOPATH/bin`, run: ```bash go install [github.com/your-username/gator@latest](https://github.com/your-username/gator@latest) +...