Skip to content

Commit

Permalink
Migrated to python-makelib > 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 21, 2024
1 parent c5836dd commit 2042bbf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ jobs:
FLAKE8: flake8
PYTEST: pytest
COVERAGE: coverage
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -30,7 +42,7 @@ jobs:
- name: Install dependencies
run: |
git clone https://github.com/pylover/python-makelib.git make
make env ENV=ci
make install-common editable-install
sudo cp `which bddcli-bootstrapper` /usr/local/bin
- name: Lint
run: make lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: |
git clone https://github.com/pylover/python-makelib.git make
make env ENV=ci
make install-common editable-install
- name: Create distributions
run: make dist
- name: Publish a Python distribution to PyPI
Expand Down

0 comments on commit 2042bbf

Please sign in to comment.