Skip to content

Commit

Permalink
feat: Github Actions config
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhantgoel committed Oct 5, 2023
1 parent 9544b49 commit bec98cc
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: tornado-sqlalchemy

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3

- uses: isbang/[email protected]

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: snok/install-poetry@v1

- name: Install dependencies
run: poetry install

- name: Lint
run: poetry run task lint

- name: Test
run: poetry run task test

0 comments on commit bec98cc

Please sign in to comment.