Software Continuous Integration #29
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: Software Continuous Integration | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'scripts/make-install-software*.sh' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'scripts/make-install-software*.sh' | |
schedule: | |
- cron: '0 0 1 * *' | |
workflow_dispatch: | |
jobs: | |
check-installer: | |
name: Checking the software installation | |
strategy: | |
matrix: | |
os: | |
- 'ubuntu-22.04' | |
- 'macos-latest' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checking the installation of software on ${{ matrix.os }} | |
run: make install-software |