-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (27 loc) · 824 Bytes
/
python.yml
File metadata and controls
29 lines (27 loc) · 824 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
name: Verify python-init script
on: [push, pull_request]
jobs:
python-alpine:
runs-on: ubuntu-latest
container: docker://alpine
steps:
- uses: actions/checkout@v2
- name: Setup dependencies by apk
run: apk add bash build-base python3 python3-dev py3-pip
- name: Execute python-init.sh
run: ./scripts/python-init.sh
python-centos:
runs-on: ubuntu-latest
container: docker://centos
steps:
- uses: actions/checkout@v2
- name: Setup dependencies by dnf
run: dnf install -y gcc python3 python3-devel
- name: Execute python-init.sh
run: ./scripts/python-init.sh
python-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Execute python-init.sh
run: sudo -H ./scripts/python-init.sh