Run tests, documentation and frontend build also on pull_request

This commit is contained in:
Mark Schmitt 2021-01-09 08:06:55 +01:00
parent a2b5fb8374
commit ad241f12a3
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
name: documentation
# always run documentation workflow to ensure the documentation can still be built
on: push
on: [push, pull_request]
# possibly add a publish job for automatic read-the-docs publishing
jobs:

View File

@ -1,7 +1,7 @@
name: frontend
# always run frontend workflow to see if it builds and tests run fine
on: push
on: [push, pull_request]
jobs:
frontend:

View File

@ -1,7 +1,7 @@
name: backend-tests
# always run tests workflow
on: push
on: [push, pull_request]
jobs:
tests: