STF 1.5.5 release ops (#42) #29
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
name: Unit tests suite | |
env: | |
TEST_IMAGE: quay.io/centos/centos:stream9 | |
PROJECT_ROOT: /src/github.com/infrawatch/sg-bridge | |
OPSTOOLS_REPO: https://git.centos.org/rpms/centos-release-opstools/raw/c9s-sig-opstools/f/SOURCES/CentOS-OpsTools.repo | |
on: [push, pull_request] | |
jobs: | |
unit-tests: | |
name: Unit tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run sg-core unit test suite | |
run: | | |
docker run --name=testsuite -uroot --network host -e OPSTOOLS_REPO \ | |
--volume ${{ github.workspace }}:$PROJECT_ROOT:z --workdir $PROJECT_ROOT \ | |
$TEST_IMAGE bash $PROJECT_ROOT/ci/run_tests.sh |