We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77f8552 commit 9a5d615Copy full SHA for 9a5d615
1 file changed
.github/workflows/main.yml
@@ -1,27 +1,18 @@
1
-name: CI-Train-Model
+name: Test-Workflow
2
3
on:
4
push:
5
branches:
6
- main
7
+ workflow_dispatch:
8
9
jobs:
- train:
10
+ test:
11
runs-on: ubuntu-latest
12
+
13
steps:
14
- name: Checkout repo
15
uses: actions/checkout@v4
16
- - name: Setup Python
- uses: actions/setup-python@v5
17
- with:
18
- python-version: "3.10"
19
-
20
- - name: Install dependencies
21
- run: |
22
- python -m pip install --upgrade pip
23
- pip install -r requirements.txt
24
25
- - name: Run training script
26
27
- python -m src.modelling
+ - name: Say hello
+ run: echo "Hello from GitHub Actions"
0 commit comments