upgrade base versions of key OS dependencies: #72
Workflow file for this run
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: testall | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches-ignore: ['main', 'integration'] | |
paths: | |
- 'docker/**' | |
- '.github/workflows/**' | |
jobs: | |
testall: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v1 | |
- name: Build Containers | |
env: | |
OAR_DOCKERHUB_CRED: ${{ secrets.OAR_DOCKERHUB_CRED }} | |
run: | | |
bash scripts/dhsetup.sh | |
cd docker && bash ./dockbuild.sh | |
- name: Run Unit Tests via Docker | |
run: cd docker && ./testall | |