We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212a371 commit ab13af1Copy full SHA for ab13af1
.github/workflows/CI.yaml
@@ -0,0 +1,36 @@
1
+name: Tickit Data Lake CI Pipeline
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "main"
7
+ - "feature/**"
8
+ pull_request:
9
10
11
12
+jobs:
13
+ CI:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Check out the repository
18
+ uses: actions/checkout@v4
19
20
+ - name: Set up Python
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: '3.12'
24
25
+ - name: Install dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29
30
+ - name: Lint Python scripts with Ruff
31
32
+ python -m ruff check src/ tests/
33
34
+ - name: Test with pytest
35
36
+ pytest -s tests/
tests/.gitkeep
0 commit comments