Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Set up PR validation #1

Set up PR validation

Set up PR validation #1

# This workflow will install Python dependencies, run tests and lint.
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Lint and Test Packages
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12.2"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pipenv
python -m pip install ruff
- name: Lint with ruff
run: |
ruff check
- name: Test with unittest
run: |
cd packages/pythonlab_setup
pipenv install
cd pythonlab_setup
pipenv run python -m unittest
cd ../..
# Repeat install and run unit tests for any other packages with tests.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.