install #309
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: install | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 13 * * 6' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-14, macos-15] # ref: https://github.com/actions/runner-images/tree/main | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Check versions of pre-installed software/system | |
run: ./.cisupport/pre.sh | |
- name: Execute full install | |
run: ./setup.sh | |
- name: Check installed versions | |
run: ./.cisupport/post.sh |