8000 Merge branch 'main' of https://github.com/andrehora/gitevo · andrehora/gitevo@ab8dec1 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

Merge branch 'main' of https://github.com/andrehora/gitevo #56

Merge branch 'main' of https://github.com/andrehora/gitevo

Merge branch 'main' of https://github.com/andrehora/gitevo #56

Workflow file for this run

name: tests
on: [push]
jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: tests
run: python -m pytest tests
0