Skip to content

Commit

Permalink
update workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
llbonet14 committed Feb 2, 2024
1 parent 1a88496 commit 0486334
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI workflow

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

jobs:
build:
runs-on: ubuntu-latest
container: python:3.9-slim
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

0 comments on commit 0486334

Please sign in to comment.