Skip to content

Merge pull request #145 from bonipart/main #22

Merge pull request #145 from bonipart/main

Merge pull request #145 from bonipart/main #22

name: Dependency check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
dep_check:
name: dep_check
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.3.2
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
#----------------------------------------------
# install your root project
#----------------------------------------------
- name: install library
run: poetry install --only main
- name: Check import
run: poetry run python -c "from anchorpy import Program"