Skip to content

added logic to create file references and added logging #15

added logic to create file references and added logging

added logic to create file references and added logging #15

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
ci-test:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
poetry-version: ["1.4.2"]
os: [ubuntu-20.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: View poetry --help
run: poetry --help
- name: Poetry env setup
run: poetry env use python
- name: Poetry install
run: poetry install
- name: Check to see if poetry can build
run: poetry build
- name: Run pytest
run: poetry run pytest