rohanpm/pidiff

View on GitHub
.github/workflows/ci.yml

Summary

Maintainability
Test Coverage
name: CI

on:
  pull_request:
    branches: [master]
  workflow_call: {}

jobs:
  run-ci:
    runs-on: ubuntu-22.04

    steps:
      - uses: actions/checkout@v3

      - name: Set up Python
        uses: actions/setup-python@v4
        with:
          python-version: |
            3.10

      - name: Install dependencies
        run: |
          python -m pip install -U pip
          pip install tox

      - name: Run tests
        run: |
          tox -s false