Skip to content

Commit

Permalink
Create packaging_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hf-kklein authored Sep 28, 2023
1 parent 1790ea7 commit 3707640
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/packaging_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Packaging Test"

on: [pull_request]
jobs:
check_packaging:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Packaging Test
run: |
tox -e test_packaging

0 comments on commit 3707640

Please sign in to comment.