File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
import unittest
2
- import lib as merge
2
+ import json_merge_patch . lib as merge
3
3
from collections import OrderedDict
4
4
5
5
fixtures = [
You can’t perform that action at this time.
0 commit comments