Dec updates #49
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
# Run linting and basic file format checks | |
name: Test | |
on: | |
pull_request: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests and try and build project | |
uses: mysociety/run-in-devcontainer@v1 | |
with: | |
dockerfile: Dockerfile | |
app: web | |
run: | | |
script/setup | |
script/populate --all | |
script/test | |