Summary
Jobs
pre-commit
spdx
collect_dirs
build
test (tests/models/MobileNetV2/)
test (tests/models/albert/)
test (tests/models/autoencoder_conv/)
test (tests/models/autoencoder_linear/)
test (tests/models/beit/)
test (tests/models/bert/)
test (tests/models/bloom/)
test (tests/models/clip/)
test (tests/models/codegen/)
test (tests/models/deit/)
test (tests/models/detr/)
test (tests/models/distilbert/)
test (tests/models/dpr/)
test (tests/models/falcon/)
test (tests/models/flan_t5/)
test (tests/models/glpn_kitti/)
test (tests/models/gpt2/)
test (tests/models/gpt_neo/)
test (tests/models/hand_landmark/)
test (tests/models/hardnet/)
test (tests/models/llama/)
test (tests/models/mlpmixer/)
test (tests/models/mnist/)
test (tests/models/mobilenet_ssd/)
test (tests/models/musicgen_small/)
test (tests/models/openpose/)
test (tests/models/opt/)
test (tests/models/perceiver_io/)
test (tests/models/resnet/)
test (tests/models/resnet50/)
test (tests/models/roberta/)
test (tests/models/segformer/)
test (tests/models/segment_anything/)
test (tests/models/speecht5_tts/)
test (tests/models/squeeze_bert/)
test (tests/models/stable_diffusion/)
test (tests/models/t5/)
test (tests/models/timm/)
test (tests/models/torchvision/)
test (tests/models/unet/)
test (tests/models/unet_brain/)
test (tests/models/unet_carvana/)
test (tests/models/vilt/)
test (tests/models/whisper/)
test (tests/models/xglm/)
test (tests/models/yolos/)
test (tests/models/yolov3/)
test (tests/models/yolov5/)
Workflow file for this run
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: On PR
on:
workflow_dispatch:
pull_request:
branches: [ "main" ]
jobs:
pre-commit:
uses: ./.github/workflows/pre-commit.yml
secrets: inherit
spdx:
uses: ./.github/workflows/spdx.yml
secrets: inherit
build:
needs: [pre-commit, spdx]
uses: ./.github/workflows/run-build.yml
secrets: inherit
collect_dirs:
runs-on: ubuntu-latest
outputs:
dirs: ${{ steps.dirs.outputs.dirs }}
steps:
- uses: actions/checkout@v2
- id: dirs
run: echo "dirs=$(ls -d tests/models/*/ | jq --raw-input --slurp --compact-output 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}
test:
needs: [build, collect_dirs]
strategy:
matrix:
dir: ${{ fromJson(needs.collect_dirs.outputs.dirs) }}
uses: ./.github/workflows/run-tests.yml
secrets: inherit
You can’t perform that action at this time.