chore(deps): update to pact v2 and python 3.11 #19
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 | |
on: | |
push: | |
workflow_dispatch: | |
env: | |
PACT_BROKER_BASE_URL: https://test.pactflow.io | |
PACT_BROKER_TOKEN: ${{ secrets.PACTFLOW_TOKEN_FOR_CI_CD_WORKSHOP }} | |
GIT_COMMIT: ${{ github.sha }} | |
GIT_REF: ${{ github.ref }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: install pyenv | |
run: curl https://pyenv.run | bash | |
- name: set pyenv on path | |
run: | | |
export PYENV_ROOT="$HOME/.pyenv" | |
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" >> .bashrc | |
eval "$(pyenv init -)" >> .bashrc | |
eval "$(pyenv virtualenv-init -)" >> .bashrc | |
source ~/.bashrc | |
echo PATH="$PYENV_ROOT/bin:$PATH" >> $GITHUB_ENV | |
- name: Install poetry | |
run: pip install poetry | |
- name: Setup Virtual env | |
run: make venv | |
- name: Install | |
run: make deps | |
- name: Activate virtual env & test | |
run: | | |
source .venv/bin/activate | |
make test | |
- name: Publish pacts | |
run: GIT_BRANCH=${GIT_REF:11} make publish_pacts | |
# Runs on branches as well, so we know the status of our PRs | |
can-i-deploy: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker pull pactfoundation/pact-cli:latest | |
- name: Can I deploy? | |
run: GIT_BRANCH=${GIT_REF:11} make can_i_deploy | |
# Only deploy from main | |
deploy: | |
runs-on: ubuntu-latest | |
needs: can-i-deploy | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker pull pactfoundation/pact-cli:latest | |
- name: Deploy | |
run: GIT_BRANCH=${GIT_REF:11} make deploy | |
if: github.ref == 'refs/heads/main' |