Skip to content

fix(deps): bump actions/checkout from 3 to 4 #74

fix(deps): bump actions/checkout from 3 to 4

fix(deps): bump actions/checkout from 3 to 4 #74

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: Python runtime
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.10'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} 💨
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies 👷
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install application and run 💪
run: |
# stop the build if there are Python syntax errors or undefined names
python setup.py build
python setup.py install
appear-schema --help