Cu 86c0p7y10 implement levenshtein distance comparison #407
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: OnPullRequest | |
on: | |
pull_request: | |
branches: | |
- 'dev' | |
- 'main' | |
- 'master' | |
defaults: | |
run: | |
shell: bash | |
env: | |
GITHUB_WORKFLOW_FOLDER: ./.github/workflows | |
JEMPI_APP_PATH: ./JeMPI_Apps | |
jobs: | |
prepare: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/actions/prepare | |
lint-check: | |
needs: [prepare] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/actions/lint | |
build-check: | |
needs: [lint-check] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/actions/build-check | |
test: | |
needs: [build-check] | |
runs-on: ubuntu-22.04 | |
continue-on-error: true # TODO: Uncomment this out once tests are in a better state - ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/master' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/actions/test | |
smoke-test: | |
needs: [test] | |
runs-on: ubuntu-22.04 | |
continue-on-error: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/master' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/actions/smoke-test |