Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
y011d4 committed Mar 2, 2024
1 parent 3185ebe commit 1bfc265
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -45,7 +45,7 @@ jobs:
if: ${{ startsWith(matrix.target, 'x86_64') }}
shell: bash
run: |
set -e
set -ex
pip install snarkpy --find-links dist --force-reinstall
pip install pytest
pytest
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ all: install

.PHONY: install
install:
maturin build --release
pip3 install target/wheels/*.whl
maturin build --release --out dist
pip3 install snarkpy --find-links dist

.PHONY: install-dev
install-dev:
Expand Down

0 comments on commit 1bfc265

Please sign in to comment.