Skip to content

Commit

Permalink
Migrate to GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandr Shtaub committed Jan 18, 2024
1 parent 76641a9 commit 12679f5
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 16 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Test

on:
- push

jobs:
build:
name: Python ${{ matrix.python-version }} / ${{ matrix.tox-environment }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
tox-environment:
- django32
- django42
include:
- python-version: 3.9
- tox-environment: lint

env:
TOXENV: ${{ matrix.tox-environment }}

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: pip install tox

- name: Run tests
run: tox
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 12679f5

Please sign in to comment.