forked from skonfig/skonfig
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (51 loc) · 1.15 KB
/
test-build-optional.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: test-build-optional
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-13
python-version:
- pypy-3.6
- pypy-3.7
- pypy-3.8
- pypy-3.9
- pypy-3.10
- graalpy-22.3.1
- graalpy-23.1.2
- graalpy-24.1.1
include:
- {os: "macos-13", python-version: "3.6"}
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Information
run: |
python3 -V
python3 -W ignore -m pip --disable-pip-version-check list
bin/skonfig -V
- name: Build
run: |
python3 setup.py build
- name: Install
run: |
python3 setup.py install
- name: Clean
run: |
python3 setup.py clean --all