Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Merge pull request #252 from CodeWithEmad/fix/update-actions #414

Merge pull request #252 from CodeWithEmad/fix/update-actions

Merge pull request #252 from CodeWithEmad/fix/update-actions #414

Workflow file for this run

name: Python CI
on:
push:
branches: [master]
pull_request:
branches:
- '**'
jobs:
run_tests:
name: tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [quality, django32, django42]
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Install Dependencies
run: make requirements
- name: Run Tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox