Executed by clebergnu #5
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: Runs the tests for library modules | |
run-name: Executed by ${{ github.actor }} | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
modules-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Install Avocado to run tests | |
run: pip3 install avocado-framework==102.0 | |
- name: Run the ar module test | |
run: ./tests/test-module.py metadata/autils/archive/ar.yml |