Skip to content

Commit

Permalink
GitHub Actions Workflows and Misc updates
Browse files Browse the repository at this point in the history
`.github/workflows/*`
---------------------

* `.github/workflows/build.yml`: Change to go `1.17` to match `server/go.mod`.
* `.github/workflows/release.yml`: Change version of GoReleaser to version that supports go 1.17.

Misc
----

* Ignore `.tmp/` folder.
  • Loading branch information
Mohamed Bana committed May 13, 2022
1 parent 9653e08 commit f9c2a1a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
version: v1.6.3
args: release --rm-dist --skip-sign
env:
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@

kubeconfig
server/api/
.vscode/

.vscode/

.tmp/
/.tmp/
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ run:

run-minikube:
docker-compose -f docker-compose.yaml -f docker-compose-minikube.yaml up --build --force-recreate
test:

test:
cd ./server && FAKE=true go test -v ./...

0 comments on commit f9c2a1a

Please sign in to comment.