Test #53
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 | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# UTC time 22:30 | |
- cron: '30 22 * * *' | |
jobs: | |
test: | |
if: github.repository == 'sophgo/model-zoo' | |
name: Test Model Compiling | |
runs-on: build | |
environment: testing | |
timeout-minutes: 540 | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: nschloe/action-cached-lfs-checkout@f36573bae4ed2cd523d8f62f17415814eb491aac | |
with: | |
fetch-depth: 0 | |
- name: Set Optional Env | |
if: "${{ github.event_name == 'schedule' || \ | |
contains( \ | |
github.event.pull_request.labels.*.name, \ | |
'full_regression' \ | |
) }}" | |
run: | | |
echo "FULL_TEST=true" >> $GITHUB_ENV | |
- run: .github/workflows/test_build.sh |