Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Farrukh14 committed Jun 27, 2024
1 parent 534653f commit 54015af
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Run Test
on:
push:
branches:
- main

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sqlalchemy pandas numpy
- name: Make tests.sh executable
run: bash /c/Users/farrukh/Documents/made-template/project/pipeline.sh

- name: Test with test-files
run: |
./project/tests.sh

0 comments on commit 54015af

Please sign in to comment.