Skip to content

Move common steps into composite step #1181

Move common steps into composite step

Move common steps into composite step #1181

Workflow file for this run

name: Build the package
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.9"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Prepare and install deps
uses: ./.github/actions/install-deps
with:
python-version: ${{ matrix.python-version }}
- name: Check if package builds
run: |
poetry build