Skip to content

Bump andrewslotin/go-proxy-pull-action from 1.2.0 to 1.3.0 (#51) #205

Bump andrewslotin/go-proxy-pull-action from 1.2.0 to 1.3.0 (#51)

Bump andrewslotin/go-proxy-pull-action from 1.2.0 to 1.3.0 (#51) #205

Workflow file for this run

name: python test
on: [push]
permissions:
contents: read
jobs:
python-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov pytest-schema
- name: test test.py
run: ./test.py
- name: "pytest *.py"
run: |
# shellcheck disable=SC2046
pytest $(git ls-files '*.py' ':!:bin/*') --verbose
- name: test main.py
run: ./main.py