Linux #40
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
# save as .github/workflows/Linux.yml | |
name: Linux | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- 'releases/**' | |
pull_request: | |
schedule: # MIN HOUR DAYOFMONTH MONTH DAYOFWEEK - schedule a monthly run - just keeping an eye on long-time-not-touched repositories | |
- cron: '32 8 1 * *' | |
jobs: | |
launch: | |
uses: ./.github/workflows/runner.yml | |
with: | |
os: ubuntu |