Skip to content

Commit

Permalink
bump version to 0.2.0 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarrosop authored Apr 9, 2022
1 parent 56b6626 commit 30fdba3
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 86 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@ jobs:
- name: Setup python
uses: actions/setup-python@v1

- name: Install Poetry
uses: snok/install-poetry@v1.1.1
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.13
virtualenvs-create: true
virtualenvs-in-project: true

- name: Cache Poetry virtualenv
uses: actions/cache@v2
id: cached-poetry-dependencies
id: cache
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
path: ~/.virtualenvs
key: poetry-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
restore-keys: poetry-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}

- name: Install Dependencies
run: poetry install
Expand Down
Loading

0 comments on commit 30fdba3

Please sign in to comment.