Feature rye (#17)
Migrate from Poetry to Rye Adaptat github actions Group build targets in makefile
This commit is contained in:
parent
b57c4f1ae6
commit
6d53fdecac
32 changed files with 208 additions and 1203 deletions
19
.github/workflows/pyinstaller.yml
vendored
19
.github/workflows/pyinstaller.yml
vendored
|
|
@ -2,13 +2,22 @@ name: pyinstaller
|
|||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
build_binary:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
python-version: [3.10.13]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
- name: Set up rye
|
||||
uses: atu4403/setup-rye-multiOS@v1
|
||||
- name: Sync dependencies using rye
|
||||
run: |
|
||||
rye pin ${{ matrix.python-version }}
|
||||
rye sync
|
||||
- name: Package application
|
||||
uses: JackMcKew/pyinstaller-action-linux@python3.10
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue