Skip to content

Commit 6b651f5

Browse files
fixed ci.yml
1 parent 534409c commit 6b651f5

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,19 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14-
script:
15-
- docker build -t classifier .
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v3
17+
18+
- name: Build Docker Image
19+
run: docker build -t classifier .
1620

1721
test:
1822
needs: build
1923
runs-on: ubuntu-latest
2024
steps:
25+
- name: Checkout Code
26+
uses: actions/checkout@v3
27+
2128
- name: Run Tests
2229
run: make test

0 commit comments

Comments
 (0)