8000 Skip non-Git repositories in a directory containing multiple Git repositories. & Set an explicit Y minimum of 0 in charts. · andrehora/gitevo@db75c59 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Skip non-Git repositories in a directory containing multiple Git repo… #50

Skip non-Git repositories in a directory containing multiple Git repo…

Skip non-Git repositories in a directory containing multiple Git repo… #50

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