renovate: remove edsantiago as default reviewer #568
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
--- | |
on: [push, pull_request] | |
jobs: | |
automation_unit-tests: | |
runs-on: ubuntu-24.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 |