We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10db7ef commit dd04fd2Copy full SHA for dd04fd2
.github/workflows/ci.yml
@@ -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
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,5 +1,5 @@
import unittest
-import lib as merge
+import json_merge_patch.lib as merge
from collections import OrderedDict
fixtures = [
0 commit comments