Skip to content

Commit 941160f

Browse files
committed
Switch from CircleCI to GitHub Actions.
1 parent 73d1344 commit 941160f

2 files changed

Lines changed: 30 additions & 23 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/ci.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
27+
make init
28+
- name: Test Source
29+
run: |
30+
make test

0 commit comments

Comments
 (0)