Skip to content

Commit

Permalink
packaging returned and codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
petrikvladimir committed Sep 13, 2023
1 parent 6feff7d commit 56cb44e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Check Packaging

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@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install .
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: echo "::set-output name=today::$(/bin/date -u '+%Y%m%d')"
shell: bash

- name: Cashing of the happypose installation
- name: Caching of the happypose installation
uses: actions/cache@v3
with:
path: ${{ env.CONDA }}/envs
Expand Down Expand Up @@ -69,3 +69,5 @@ jobs:
pip install pytest coverage
coverage run -m pytest tests
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 56cb44e

Please sign in to comment.