Fixed some issues with branched_model_ch_last and tiny_unet_ch_last (… #14
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: ⚙️ Update example model list. | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Update | |
# This job runs on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Run scanning script | |
run: python scan.py | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update example model list. |