We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73d1344 commit 941160fCopy full SHA for 941160f
2 files changed
.circleci/config.yml
.github/workflows/ci.yaml
@@ -0,0 +1,30 @@
1
+name: pdqhas-python CI/CD
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
8
+jobs:
9
+ test:
10
+ name: Test pdqhash-python
11
+ strategy:
12
+ matrix:
13
+ python-version: [3.6]
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout Code
17
+ uses: actions/checkout@v2
18
+ - name: Set up Python ${{ matrix.python-version }}
19
+ uses: actions/setup-python@v2
20
+ with:
21
+ python-version: ${{ matrix.python-version }}
22
+ - name: Install Pipenv
23
+ run: |
24
+ pip install pipenv
25
+ - name: Make Host Environment
26
27
+ make init
28
+ - name: Test Source
29
30
+ make test
0 commit comments