Postgres doesn't like collate by NOCASE. but it does it by default an… #104
Workflow file for this run
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
name: Checks | |
on: | |
pull_request: | |
push: | |
defaults: | |
run: | |
working-directory: "/app" | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yaml | |
lint: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
container: | |
image: ${{ needs.build.outputs.image }} | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.github_token }} | |
strategy: | |
matrix: | |
linter: [flake8, isort, black, mypy] | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- run: "make lint/${{ matrix.linter }}" | |
test: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- lint | |
container: | |
image: ${{ needs.build.outputs.image }} | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.github_token }} | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- run: "make test" |