-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (32 loc) · 964 Bytes
/
Copy pathtest.yml
File metadata and controls
39 lines (32 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Test Action
on:
pull_request:
branches: [ master ]
jobs:
# 🤖 CI paragraph
#
# uncomment the content of this paragraph to activate the tests in GitHub CI
# - remove the 2 trailing characters "# ", do not change the spaces
# (the `name` keys should be at the same level as the `uses` key)
# (the `strategy` key should be at the same level as the `steps` key)
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Say hello
run: |
echo "Hello, World!"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install package and test
run: |
make install test clean
strategy:
matrix:
python-version: [3.8]