Skip to content

erro para pcs sem excel instalado #26

erro para pcs sem excel instalado

erro para pcs sem excel instalado #26

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python 3.12
uses: actions/setup-python@v5.1.1
with:
python-version: "3.12"
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Lint with Ruff
run: |
ruff check --output-format=github .
# - name: Test with pytest -> Not ready yet.
# run: |
# poetry run pytest --maxfail=1 --disable-warnings -q