add sqlc; performance and reliability improvements; large refactor #268
Workflow file for this run
This file contains hidden or 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
| name: Pull Request CI | |
| on: | |
| pull_request: | |
| branches: [develop] | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| workflow_dispatch: | |
| jobs: | |
| PullRequestCI: | |
| name: Pull Request CI | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false | |
| env: | |
| DOCKER_BUILDKIT: 1 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run Tests | |
| run: | | |
| cp .env.example .env | |
| ./compose.sh test |