Skip to content

Fix migration files

Fix migration files #4

Workflow file for this run

# 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 ./...