Skip to content

Update GitHub Actions dependencies. #9

Update GitHub Actions dependencies.

Update GitHub Actions dependencies. #9

Workflow file for this run

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/