Merge pull request #124 from montaguethomas/tm/update-modules #56
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: Default | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: lesovsky/pgcenter-testing:0.0.6 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Prepare test environment | |
run: prepare-test-environment.sh | |
- name: Run lint | |
run: make lint | |
- name: Run test | |
run: make test | |
- name: Build | |
run: make build | |
- name: Install | |
run: make install | |
- name: Run E2E tests | |
run: ./testing/e2e.sh |