Skip to content

chore(deps): update dependency yarl to ~=1.18.0 (#5) #11

chore(deps): update dependency yarl to ~=1.18.0 (#5)

chore(deps): update dependency yarl to ~=1.18.0 (#5) #11

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: pip
- run: pip install -r requirements.txt
- run: pyinstaller --onefile --specpath etc/pyinstaller/ --collect-all=babelfish --collect-all=app main.py main.py
env:
PYTHONPATH: '.'
- run: ls dist
- uses: actions/upload-artifact@v4
with:
name: 'wheels-${{ runner.os }}'
path: ./dist/*
if-no-files-found: ignore