network/.github/workflows/integration.yml
Gris Ge 0e3d480de7 CI: Enable CentOS 9 stream integration test
Signed-off-by: Gris Ge <fge@redhat.com>
2022-02-05 19:25:09 +01:00

25 lines
430 B
YAML

name: integration
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- base
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 }}