Skip to content

clean up workflows to have successive steps #2

clean up workflows to have successive steps

clean up workflows to have successive steps #2

Workflow file for this run

name: pull-request
on:
pull_request:
jobs:
lint:
uses: ./.github/workflows/lint.yml
tests:
needs: lint
uses: ./.github/workflows/tests.yml
build_image:
needs: [lint, tests]
uses: ./.github/workflows/build-image.yml