network/.github/workflows/integration.yml
Till Maas d3a7124f07 GitHub CI: Trigger on main branch
The network role is using `main` for the default branch, so this needs
to be used in the workflow definition.

Signed-off-by: Till Maas <opensource@till.name>
2022-03-11 15:55:25 +01:00

25 lines
430 B
YAML

name: integration
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
integration:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- os: "c7"
- os: "c8s"
- os: "c9s"
steps:
- uses: actions/checkout@v2
- name: Run tests
run: sudo .github/run_test.sh --os ${{ matrix.os }}