Skip to content

switch to composite action #1

switch to composite action

switch to composite action #1

Workflow file for this run

name: "Reusable build workflow"
inputs:
# os:
# default: "ubuntu-20.04"
# description: "Value for 'runs-on'"
# required: false
# type: string
python:
default: "3.9"
description: "Value for 'python-version'"
required: false
type: string
runs:
using: "composite"
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ inputs.python }}
- name: Install dependencies
run: |
pip install poetry
poetry install --no-interaction