Skip to content

chore(deps): bump mostlyai-qa to 1.10.5 #3779

chore(deps): bump mostlyai-qa to 1.10.5

chore(deps): bump mostlyai-qa to 1.10.5 #3779

Workflow file for this run

name: 'mostlyai CI'
on:
push:
pull_request:
types: [opened, reopened, synchronize, edited]
jobs:
pre-commit-check:
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
uses: ./.github/workflows/pre-commit-check.yaml
secrets: inherit
run-tests-cpu:
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
uses: ./.github/workflows/run-tests-cpu.yaml
secrets: inherit
run-tests-gpu:
if: |
(github.event_name == 'push' && contains(github.event.head_commit.message, '[gpu]')) ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.title, '[gpu]'))
uses: ./.github/workflows/run-tests-gpu.yaml
secrets: inherit
build-docker-image:
if: |
(
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
) &&
(
github.ref == 'refs/heads/main' ||
startsWith(github.ref, 'refs/tags/')
)
needs: [pre-commit-check, run-tests-cpu]
secrets: inherit
uses: ./.github/workflows/build-docker-image.yaml