Skip to content

Add support for smaller values; add pre-rendered versions #110

Add support for smaller values; add pre-rendered versions

Add support for smaller values; add pre-rendered versions #110

Workflow file for this run

name: Actions
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 wheel mypy
pip install -r requirements.txt
- name: Install Ubuntu dependencies
run: |
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
export DEBIAN_FRONTEND=noninteractive
sudo apt-get -yq install ca-certificates
sudo apt-get -yq install ttf-mscorefonts-installer
if: matrix.os == 'ubuntu-latest'
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# check for all the other problems. The GitHub editor is 127 chars wide
flake8 . --count --max-complexity=10 --max-line-length=127 --statistics
- name: Lint with mypy
run: mypy --pretty .
- name: Generate Labels
run: |
python ./LabelGenerator.py
if: matrix.os != 'macos-latest'
- name: Archive generated PDF
uses: actions/upload-artifact@v3
with:
name: generated-${{ matrix.os}}-${{ matrix.python-version }}
path: ResistorLabels.pdf
if-no-files-found: error
if: matrix.os != 'macos-latest'
- name: Generate Labels with roboto
run: |
python ./LabelGenerator.py --roboto
- name: Archive generated PDF
uses: actions/upload-artifact@v3
with:
name: generated-${{ matrix.os}}-${{ matrix.python-version }}-roboto
path: ResistorLabels.pdf
if-no-files-found: error