Skip to content

Commit

Permalink
chore: update gh action | package version
Browse files Browse the repository at this point in the history
  • Loading branch information
dtbuchholz committed Apr 4, 2024
1 parent c4a7572 commit 5688ceb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Publish

on:
push:
branches: main
workflow_run:
workflows: ["Test"]
branches: [main]
types:
- completed

jobs:
build:
publish:
name: Build & publish
runs-on: ubuntu-latest

Expand All @@ -15,10 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install pipx
run: python -m pip install pipx
python-version: 3.11

- name: Install poetry
run: pipx install poetry
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ jobs:
with:
python-version: 3.11

- name: Install dependencies with poetry
run: |
pipx install poetry
poetry install
- name: Install poetry
run: pipx install poetry

- name: Install dependencies
run: poetry install

- run: poetry run isort --recursive --diff .
- run: poetry run black --check .
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tableland"
version = "0.0.0"
version = "0.0.0-pre.0"
description = "A minimal Tableland Python SDK for creating, writing, and reading onchain tables"
authors = ["Dan Buchholz <[email protected]>"]
license = "MIT AND Apache-2.0"
Expand Down

0 comments on commit 5688ceb

Please sign in to comment.