Skip to content

Commit

Permalink
Merge pull request #12 from acep-uaf/barajale-patch-1
Browse files Browse the repository at this point in the history
Create main.yml
  • Loading branch information
barajale authored May 28, 2024
2 parents 038245d + 514de64 commit 7a94eaf
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # or your project's Python version

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest

0 comments on commit 7a94eaf

Please sign in to comment.