ci(ci): add missing inputs to test and deploy jobs #6
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: Continue on error | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: [linux, docker, x86_64] | |
| steps: | |
| - name: Run tests | |
| run: echo "Running tests..." | |
| check-outdated-dependencies: | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - name: Check outdated deps | |
| run: | | |
| echo "Checking for outdated dependencies..." && false |