Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
CI basic deployment
  • Loading branch information
gradedSystem committed Sep 2, 2023
1 parent b79f603 commit 7ed91b6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install Dependencies
run: pip install -r kafka_integration/requirements.txt

- name: Run Tests
run: pytest kafka_integration/

0 comments on commit 7ed91b6

Please sign in to comment.