Skip to content

Commit

Permalink
adds ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Apr 10, 2024
1 parent 666f8af commit 7a927ac
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: LOBSTER CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

permissions:
contents: read

jobs:

lint:
name: PyLint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pylint pycodestyle
- name: Style check
run: |
make style
- name: Lint
run: |
make lint -o style
test:
name: Test
strategy:
matrix:
py-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.py-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.py-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Executing system tests
run: |
make system-tests
- name: Executing unit tests
run: |
make unit-tests
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
trlc>=1.2.2
requests>=2.31.0
libcst>=1.2.0

0 comments on commit 7a927ac

Please sign in to comment.