rabbitizer/.github/workflows/isolated_python_build.yml

23 lines
493 B
YAML
Raw Normal View History

2022-12-20 16:01:08 +00:00
name: Build Python package in isolated environment
2022-12-20 15:58:50 +00:00
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
jobs:
buildstuff:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout reposistory
2023-09-13 13:51:26 +00:00
uses: actions/checkout@v4
2022-12-20 15:58:50 +00:00
- name: Install dependencies
run: sudo apt update && sudo apt install -y python3-venv
- name: Install build module
run: pip install build -U
- name: Build
run: python3 -m build