We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2cd078 commit 5536e2dCopy full SHA for 5536e2d
3 files changed
.github/workflows/ci.yml
@@ -0,0 +1,19 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
7
+jobs:
8
+ pre-commit:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: pre-commit/action@v3.0.1
13
+ test:
14
15
16
17
+ - uses: astral-sh/setup-uv@v4
18
+ - run: uv sync --group test
19
+ - run: uv run pytest tests/ --ignore=tests/real_plc_s1200/
.github/workflows/pre-commit.yml
pyproject.toml
@@ -2,6 +2,7 @@
name="python-s7comm"
version="0.0.1"
requires-python = ">=3.12"
+license = "MIT"
[dependency-groups]
test = [
0 commit comments