Skip to content

Commit 7ab6b32

Browse files
committed
Add test workflow
1 parent 7ceb5d2 commit 7ab6b32

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Test
2+
on: push
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
python-version: ["3.11", "3.12", "3.13", "3.14"]
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Set up Python ${{ matrix.python-version }}
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: ${{ matrix.python-version }}
16+
cache: pip
17+
cache-dependency-path: requirements-dev.txt
18+
allow-prereleases: true
19+
- run: python -m unittest

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
mureq
22
=====
33

4+
[![TypeChecks](https://github.com/hbmartin/mureq-typed/actions/workflows/lint.yml/badge.svg)](https://github.com/hbmartin/mureq-typed/actions/workflows/lint.yml)
5+
46
`mureq` is a single-file, zero-dependency alternative to [python-requests](https://github.com/psf/requests), intended to be vendored in-tree by Linux systems software and other lightweight applications. It is released under the [0BSD license](https://opensource.org/licenses/0BSD) to facilitate this (it can be freely copied without any attribution requirements).
57

68
```

0 commit comments

Comments
 (0)