E2E Tests #1219
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: E2E Tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '15 6 * * *' | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
liquibase: [4.6.0, 4.16.1] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.22' | |
- name: Setup GO environment | |
run: | | |
go mod download | |
- name: Build | |
run: make build | |
- name: Setup | |
run: | | |
cp $PWD/bin/lpm /usr/local/bin/lpm | |
mkdir $PWD/lib | |
make test-setup | |
- name: End to End Tests | |
run: LIQUIBASE_HOME=$PWD/tests/mocks/liquibase/${{ matrix.liquibase }} make e2e |