Skip to content

Commit

Permalink
actions: silly test
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
  • Loading branch information
noxdafox committed Sep 5, 2023
1 parent f1d0035 commit 862174c
Showing 1 changed file with 8 additions and 22 deletions.
30 changes: 8 additions & 22 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
name: CLIPSPy build job
on: [push, pull_request]
jobs:
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ['3.8', '3.9', '3.10', '3.11']
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install --upgrade cffi pytest
# - name: Build CLIPSPy
# run: |
# make
# - name: Run tests
# run: |
# make test
# build-linux:
# runs-on: ubuntu-latest
# steps:
Expand Down Expand Up @@ -55,6 +34,12 @@ jobs:
# python -m pip install --upgrade pip
# pip install --upgrade cffi wheel
# nmake /F Makefile.win
# - name: Install CLIPSPy
# run: |
# pip install dist/*.whl
# - name: Run tests
# run: |
# python -m pytest -v
# - name: Store build artifacts
# uses: actions/upload-artifact@v3
# with:
Expand Down Expand Up @@ -91,7 +76,8 @@ jobs:
pip install dist/*.whl
- name: Run tests
run: |
python -m pytest -v
cd ../
python -m pytest -v clipspy/test
- name: Store build artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 862174c

Please sign in to comment.