forked from bitcraze/crazyflie-lib-python
-
Notifications
You must be signed in to change notification settings - Fork 17
49 lines (39 loc) · 854 Bytes
/
Copy pathdependency_check.yml
File metadata and controls
49 lines (39 loc) · 854 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
40
41
42
43
44
45
46
47
48
49
name: Dependency check
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
jobs:
# python-latest:
# runs-on: ubuntu-latest
# container:
# image: python:latest
#
# steps:
# - uses: actions/checkout@v3
#
# - name: python version
# run: python --version
#
# - name: install lib
# run: pip install -e .
python-python311:
runs-on: ubuntu-latest
container:
image: python:3.11
steps:
- uses: actions/checkout@v3
- name: python version
run: python --version
- name: install lib
run: pip install -e .
minimum-python37:
runs-on: ubuntu-latest
container:
image: python:3.7
steps:
- uses: actions/checkout@v3
- name: python version
run: python --version
- name: install lib
run: pip install -e .