Skip to content

Commit dd04fd2

Browse files
committed
ci: Add GitHub Actions
As part of this, changed tests import This was also pointed out in #1
1 parent 10db7ef commit dd04fd2

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.github/workflows/ci.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
python-version: [3.5, 3.6, 3.7, 3.8]
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-python@v1
13+
with:
14+
python-version: ${{ matrix.python-version }}
15+
- uses: actions/cache@v1
16+
with:
17+
path: ~/.cache/pip
18+
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}
19+
restore-keys: |
20+
${{ runner.os }}-pip-
21+
- run: pip install -e .[dev]
22+
- run: python -m unittest discover

json_merge_patch/tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
import lib as merge
2+
import json_merge_patch.lib as merge
33
from collections import OrderedDict
44

55
fixtures = [

0 commit comments

Comments
 (0)