Skip to content

Commit

Permalink
implemented workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
g3k0 committed Apr 20, 2024
1 parent b9707b0 commit 97ddbb9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
pull_request:
branches:
- main

jobs:
codeQuality:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run unit test
run: pytest

0 comments on commit 97ddbb9

Please sign in to comment.