Add intermittent test solver (#38159) #3
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: Build scripts | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'release-**' | |
pull_request: | |
jobs: | |
test-build-scripts: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare back-end environment | |
timeout-minutes: 5 | |
uses: ./.github/actions/prepare-backend | |
with: | |
m2-cache-key: 'build-scripts' | |
- name: Run build and release script tests | |
run: clojure -X:dev:drivers:build:build-dev:build-test:ci | |
timeout-minutes: 15 | |
- name: Run Liquibase migrations linter tests | |
run: clojure -M:test | |
working-directory: bin/lint-migrations-file | |
timeout-minutes: 15 |