Skip to content

Commit 68c5e24

Browse files
committed
ci: add docker-based test pipeline
1 parent 08ab955 commit 68c5e24

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/cy.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Build and run tests
15+
run: |
16+
docker build -t paginated-data-list .
17+
docker run paginated-data-list

0 commit comments

Comments
 (0)