jenkinsfiles: update shellcheck-reviewdog to authenticate with reviewdog #75
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: Integration tests | |
on: | |
[push, pull_request] | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Update the system | |
run: sudo apt update -y | |
- name: Install dependencies | |
run: | | |
sudo apt install -y shunit2 podman | |
- name: Integration tests | |
run: ./run_tests.sh --integration |