Change prices from minute to day to avoid issues in the db (#122) #443
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: Lint | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
sqlfluff: | |
name: SQLFluff | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Install SQLFluff | |
run: pip install sqlfluff | |
- name: Run SQLFluff | |
run: sqlfluff lint . | |
nitpicker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: ethanis/nitpicker@v1 | |
with: | |
nitpicks: ".github/nitpicks.yml" | |
token: "${{ secrets.GITHUB_TOKEN }}" |