Skip to content

Commit

Permalink
[#2][GITHUB] Setup GitHub CI
Browse files Browse the repository at this point in the history
# Why is the change needed?

The CI is executed only in the internal gitlab repository and not on the
Github public one.

# What changes does the patch introduce?

Adds CI as GitHub workflow.

# How was this patch tested?

CI running in this PR
  • Loading branch information
mgaido91 committed May 18, 2024
1 parent 6014162 commit c3a10e0
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CI Pipeline

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

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

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: Install dependencies
run: pip install .[dev]

- name: Run tests
run: python -m unittest discover -s tests
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main'

lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'

- name: Install flake8
run: pip install flake8

- name: Run flake8
run: flake8
if: github.event_name == 'pull_request'

0 comments on commit c3a10e0

Please sign in to comment.