-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (26 loc) · 863 Bytes
/
wheels.yml
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
name: Build Xray-core binding
on: [push, pull_request]
jobs:
build_xray:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macos-11, macos-12, macos-13]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20.0"
- run: go version
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python --version
- name: Generate source distribution
run: python setup.py sdist
- name: Install from source
run: python setup.py install
- name: Run sample.py
run: python sample/sample.py