File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : ubuntu-20.04
8
+ strategy :
9
+ matrix :
10
+ python-version : [3.6, 3.9]
11
+
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - name : Set up Python ${{ matrix.python-version }}
15
+ uses : actions/setup-python@v2
16
+ with :
17
+ python-version : ${{ matrix.python-version }}
18
+ - name : Install dependencies
19
+ run : |
20
+ python -m pip install --upgrade pip
21
+ pip install -r requirements.txt
22
+ - name : Run tests
23
+ run : python monitor/test
Original file line number Diff line number Diff line change 1
1
Monitor
2
2
=======
3
3
4
- .. image :: https://travis-ci.org /ReCodEx/monitor.svg?branch=master
5
- :target: https://travis-ci.org /ReCodEx/monitor
4
+ .. image :: https://github.com /ReCodEx/monitor/workflows/CI/badge .svg
5
+ :target: https://github.com /ReCodEx/monitor/actions
6
6
7
7
.. image :: http://img.shields.io/:license-mit-blue.svg
8
8
:target: http://badges.mit-license.org
You can’t perform that action at this time.
0 commit comments