Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

fix: sqlc generate in same job #4

fix: sqlc generate in same job

fix: sqlc generate in same job #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:
go-build:

Check failure on line 13 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / Go

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 13, Col: 3): The workflow must contain at least one job with no dependencies.
needs: sqlc-generate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: sqlc-dev/setup-sqlc@v4
with:
sqlc-version: '1.21.0'
- run: sqlc generate
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...