CI #567
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
- cron: "0 6 * * *" # 6am everyday. | |
jobs: | |
focal: | |
runs-on: ubuntu-latest | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: build and test action step | |
uses: ./.github/actions/focal | |
id: build_test | |
jammy: | |
runs-on: ubuntu-latest | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: build and test action step | |
uses: ./.github/actions/jammy | |
id: build_test |