Skip to content

Commit

Permalink
add action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eakmanrq committed May 18, 2024
1 parent f83590e commit cdb94e5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: SQLFrame
on:
push:
branches:
- main
pull_request:
types:
- synchronize
- opened
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install-dev
- name: Run Style
run: make style
- name: Setup Postgres
uses: ikalnytskyi/action-setup-postgres@v6
- name: Run tests
run: make local-test

0 comments on commit cdb94e5

Please sign in to comment.