mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-24 02:45:12 +00:00
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>
25 lines
430 B
YAML
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 }}
|