Merge pull request #217 from containers/renovate/actions-upload-artif… #526
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
--- | |
on: [push, pull_request] | |
jobs: | |
automation_unit-tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
path: ./ | |
- name: Install dependencies | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get -qq -y install libtest-differences-perl libyaml-libyaml-perl | |
- name: Fetch all repository tags | |
run: git fetch --tags --force | |
- name: Execute all unit-tests | |
run: $GITHUB_WORKSPACE/bin/run_all_tests.sh |