Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

chore(deps): update dependency pre-commit to v3.5.0 #229

chore(deps): update dependency pre-commit to v3.5.0

chore(deps): update dependency pre-commit to v3.5.0 #229

Workflow file for this run

name: build
on:
push:
branches:
- master
paths:
- "**.py"
- "poetry.lock"
jobs:
lint:
uses: ./.github/workflows/lint.yml
build:
needs:
- lint
strategy:
fail-fast: true
matrix:
python-version: [3.8, 3.9]
poetry-version: [1.3.2]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: |
poetry install --no-root
- name: Build executables with pyinstaller
run: |
poetry run pyinstaller SixPercent.spec --clean
- uses: actions/upload-artifact@v3
with:
name: SixPercent
path: ./dist