mirror of
https://github.com/ksherlock/prez.git
synced 2024-11-22 03:30:50 +00:00
workflow action.
This commit is contained in:
parent
8b39e26dc7
commit
6a8455af50
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
|
Loading…
Reference in New Issue
Block a user