Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Workflow file for this run

on:
push:
branches:
- main
- dev
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
sparse-checkout: |
evonote
requirements.txt
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies 📦
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: import evonote and print __dir__ 📦
run: |
python -c "import evonote; print(evonote.__dir__())"