We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e612a7a commit a2badd9Copy full SHA for a2badd9
2 files changed
.github/workflows/ci.yaml
@@ -0,0 +1,19 @@
1
+name: "Continuous integration"
2
+
3
+on:
4
+ pull_request:
5
+ branch: ["main"]
6
+ push:
7
+ workflow_dispatch:
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v5
14
+ - uses: actions/setup-python@v6
15
+ with:
16
+ python-version: '3.13'
17
+ - run: |
18
+ pip install -e .[testing]
19
+ pytest -vv
pyproject.toml
@@ -18,6 +18,11 @@ dependencies = [
dynamic = ["readme"]
20
21
+[project.optional-dependencies]
22
+testing = [
23
+ "pytest"
24
+]
25
26
[project.urls]
27
Source = "https://github.com/csiro-coasts/emsarray-smc/"
28
0 commit comments