Skip to content

Commit

Permalink
Create go-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
szabolcs-horvath committed Dec 19, 2024
1 parent 693fc47 commit a3e1b70
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# 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:
push:
branches: [ "main" ]
pull_request:
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.1'

- name: Install sqlite3
run: sudo apt-get install sqlite3

- name: Install sqlc
run: go install github.com/sqlc-dev/sqlc/cmd/sqlc@v1.27.0

- name: Install golang-migrate with the sqlite3 driver
run: go install -tags 'sqlite3' github.com/golang-migrate/migrate/v4/cmd/migrate@latest

- name: Build
run: make build

# - name: Test
# run: go test -v ./...

0 comments on commit a3e1b70

Please sign in to comment.