Add retagging script #26
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: Test Doxygen installation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-installation: | |
name: Testing the Doxygen installation | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./ | |
- name: Check doxygen existence | |
shell: bash | |
run: | | |
which doxygen | |
- name: Check cleanup | |
shell: bash | |
run: | | |
! ls doxygen* 1> /dev/null 2>&1 | |
! ls Doxygen* 1> /dev/null 2>&1 |