Skip to content

Commit

Permalink
Merge pull request #41 from ceph/github-ci-unit-tests
Browse files Browse the repository at this point in the history
.github/workflows: add unit_tests.yaml
  • Loading branch information
VallariAg authored Nov 27, 2023
2 parents e88bf9e + 5262b3a commit c464153
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Unit Tests (with tox)
on: pull_request

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: pip install tox
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e py

0 comments on commit c464153

Please sign in to comment.