Move recaptcha execution inside try..catch #475
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: Run backend app linter | |
on: push | |
jobs: | |
Credo: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "backend" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
version-type: strict | |
version-file: backend/.tool-versions | |
- run: echo -e "import Config\nconfig :richard_burton, []" >> config/dev.local.exs | |
- run: mix deps.get | |
- run: mix credo |