Bump github.com/onsi/gomega from 1.27.8 to 1.27.9 in /src/gcs-blobstore-backup-restore #1038
Workflow file for this run
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
on: | |
pull_request: | |
types: [ assigned, synchronize ] | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: make docker-unit | |
run-system-tests-jammy: | |
needs: run-unit-tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Stemcell: Jammy | MariaDB: Multiple" | |
run: FOCUS=ubuntu-jammy make docker-system-mariadb | |
- name: "Stemcell: Jammy | MySQL: Multiple" | |
run: FOCUS=ubuntu-jammy make docker-system-mysql | |
- name: "Stemcell: Jammy | Postgres: Multiple" | |
run: FOCUS=ubuntu-jammy make docker-system-postgres | |
run-system-tests-bionic: | |
needs: run-unit-tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Stemcell: Bionic | MariaDB: Multiple" | |
run: FOCUS=ubuntu-bionic make docker-system-mariadb | |
- name: "Stemcell: Bionic | MySQL: Multiple" | |
run: FOCUS=ubuntu-bionic make docker-system-mysql | |
- name: "Stemcell: Bionic | Postgres: Multiple" | |
run: FOCUS=ubuntu-bionic make docker-system-postgres | |
run-system-tests-xenial: | |
needs: run-unit-tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Stemcell: Xenial | MariaDB: Multiple" | |
run: FOCUS=ubuntu-xenial make docker-system-mariadb | |
- name: "Stemcell: Xenial | MySQL: Multiple" | |
run: FOCUS=ubuntu-xenial make docker-system-mysql | |
- name: "Stemcell: Xenial | Postgres: Multiple" | |
run: FOCUS=ubuntu-xenial make docker-system-postgres |