summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Socol <me@jamessocol.com>2022-12-04 11:42:42 -0500
committerJames Socol <me@jamessocol.com>2022-12-04 11:48:39 -0500
commit835faceba145eed559d002448e090142cbd0264a (patch)
tree8b7fbac44bf2d2f55dcaaa4ec3e29d7ec6cc3b92
parenta6084e93e11b3717780b6fc45011c6cb81c4a271 (diff)
downloadpystatsd-835faceba145eed559d002448e090142cbd0264a.tar.gz
Refactor test action for reusability
Pulls the test details into a discrete action that can be reused for the release workflow.
-rw-r--r--.github/actions/test/action.yml23
-rw-r--r--.github/workflows/ci.yml28
2 files changed, 38 insertions, 13 deletions
diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml
new file mode 100644
index 0000000..790017e
--- /dev/null
+++ b/.github/actions/test/action.yml
@@ -0,0 +1,23 @@
+name: test
+description: 'runs a test matrix'
+inputs:
+ python-version:
+ required: true
+
+runs:
+ using: "composite"
+ steps:
+ - uses: actions/checkout@v3
+
+ - uses: actions/setup-python@v4
+ with:
+ python-version: ${{ inputs.python-version }}
+
+ - run: pip install --upgrade pip
+ shell: sh
+
+ - run: pip install tox
+ shell: sh
+
+ - run: tox -e py
+ shell: sh
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6d0da75..ea1e4fe 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,19 +16,21 @@ jobs:
python: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.9']
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-python@v4
- with:
- python-version: ${{ matrix.python }}
- - run: pip install --upgrade pip
- - run: pip install tox
- - run: tox -e py
+ - uses: actions/checkout@v3
+
+ - uses: ./.github/actions/test
+ with:
+ python-version: ${{ matrix.python }}
+
lint:
runs-on: [ubuntu-latest]
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-python@v4
- with:
- python-version: '3.11'
- - run: pip install flake8
- - run: flake8 statsd
+ - uses: actions/checkout@v3
+
+ - uses: actions/setup-python@v4
+ with:
+ python-version: '3.11'
+
+ - run: pip install flake8
+
+ - run: flake8 statsd