select id from table, many #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: sqlc f# | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: docker-compose | |
run: docker-compose up -d | |
working-directory: testdata/gen | |
- name: show docker ps | |
run: docker-compose ps | |
working-directory: testdata/gen | |
- name: show docker logs | |
run: docker-compose logs | |
working-directory: testdata/gen | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: install paket | |
run: | | |
dotnet tool install paket | |
dotnet tool restore | |
working-directory: testdata/gen | |
- name: Restore dependencies | |
run: dotnet restore | |
working-directory: testdata/gen | |
- name: Build | |
run: dotnet build --no-restore | |
working-directory: testdata/gen | |
- name: RUN | |
env: | |
DATABASE_URL: "Host=localhost;Port=5432;Username=postgres;Password=thisisapassword;Database=postgres" | |
run: | | |
echo $DATABASE_URL | |
dotnet run | |
working-directory: testdata/gen | |
- name: Restore dependencies | |
run: dotnet restore | |
working-directory: testdata/gen/sqlc_test | |
- name: RUN | |
env: | |
DATABASE_URL: "Host=localhost;Port=5432;Username=postgres;Password=thisisapassword;Database=postgres" | |
run: | | |
echo $DATABASE_URL | |
dotnet run | |
working-directory: testdata/gen/sqlc_test | |
# - name: Test | |
# - name: Test | |
# run: dotnet test --no-build --verbosity normal |