We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6fba61 commit cb968a1Copy full SHA for cb968a1
2 files changed
.github/workflows/run-tests.yml
@@ -0,0 +1,29 @@
1
+name: tests
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - master
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up Python
18
+ uses: actions/setup-python@v5
19
+ with:
20
+ python-version: '3.11'
21
+ cache: 'pip'
22
23
+ - name: Install dependencies
24
+ run: |
25
+ pip install .[dev]
26
27
+ - name: Run tests
28
29
+ pytest
readme.md
@@ -6,8 +6,7 @@ This module provides easy access to the database in python.
## Install
-Clone and cd into `acorg/acorgdb` then `pip install .` (`pip install -e .[dev]`
-if you want to make changes.)
+`pip install acorgdb`
## Example usage
0 commit comments