Skip to content

Commit ca9bbee

Browse files
authored
feature/fix test (#135)
* fix test * update container * up
1 parent 7fc3ea3 commit ca9bbee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
container:
12-
image: python:3.8-alpine
12+
image: python:3.12-alpine
1313
credentials:
14-
username: ${{ secrets.DOCKERHUB_USERNAME }}
15-
password: ${{ secrets.DOCKERHUB_TOKEN }}
14+
username: ${{ secrets.DOCKERHUB_USERNAME || '' }}
15+
password: ${{ secrets.DOCKERHUB_TOKEN || '' }}
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: setup

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
defaut: help
55

66
install: wandbox/*.py ## install self
7-
python setup.py install
7+
python -m pip install .
88

99
install-test-deps: ## install test dependencies
1010
pip install -e.[test]

0 commit comments

Comments
 (0)