AV test suite #10
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: AV test suite | |
on: | |
workflow_dispatch: | |
#inputs: | |
# name: | |
# description: 'Person to greet' | |
# default: 'World' | |
# required: true | |
# type: string | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
# See https://github.com/actions/checkout | |
# (NB actions/checkout@v2 is deprecated) | |
# (NB actions/checkout@v4 need "Allow valassi and select non-valassi" and "Allow actions created by github") | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: avtest | |
run: echo Current directory is $(pwd); echo execute .github/workflows/avtest.sh; .github/workflows/avtest.sh | |
#- name: Send greeting | |
# run: echo "Hello ${{ inputs.name }}" |