Skip to content

ci: test on multi-os / only publish on linux #32

ci: test on multi-os / only publish on linux

ci: test on multi-os / only publish on linux #32

Workflow file for this run

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 }}
BASE_URL: http://localhost:5000
GIT_COMMIT: ${{ github.sha }}
GIT_REF: ${{ github.ref }}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: 'x64'
- run: pip install -r requirements.txt
- name: Test pactflow-example-consumer-python against ${{ matrix.pact_provider }}
run: make test
- name: Publish pacts
run: GIT_BRANCH=${GIT_REF:11} make publish_pacts
if: matrix.os == 'ubuntu-latest'
# 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@v4
- run: docker pull pactfoundation/pact-cli:latest
- name: Can I deploy?
run: GIT_BRANCH=${GIT_REF:11} make can_i_deploy
# Only deploy from master
deploy:
runs-on: ubuntu-latest
needs: can-i-deploy
steps:
- uses: actions/checkout@v4
- run: docker pull pactfoundation/pact-cli:latest
- name: Deploy
run: GIT_BRANCH=${GIT_REF:11} make deploy
if: github.ref == 'refs/heads/master'