Update GitHub Actions dependencies. #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
linux-os: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare venv | |
run: python -m venv venv | |
- name: Install venv Dependencies | |
run: venv/bin/python -m pip install --upgrade pip build | |
- name: Build Package | |
run: venv/bin/python -m build | |
- name: Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: honkypy-dist | |
path: dist/ |