mirror of
https://github.com/ksherlock/prez.git
synced 2025-08-05 05:24:32 +00:00
workflow action.
This commit is contained in:
21
.github/workflows/setup.yml
vendored
Normal file
21
.github/workflows/setup.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: setup
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.12'
|
||||
|
||||
- name: pip
|
||||
run: pip install setuptools
|
||||
|
||||
- name: build
|
||||
run: python setup.py build
|
||||
|
||||
- name: install
|
||||
run: python setup.py install
|
Reference in New Issue
Block a user