Skip to content

test-build-optional #21

test-build-optional

test-build-optional #21

---
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.5"}
- {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