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 586ee9b commit 7a9338eCopy full SHA for 7a9338e
.github/workflows/my-pipeline.yml
@@ -0,0 +1,20 @@
1
+name: Continuous Integration
2
+
3
+on:
4
+ push:
5
+ paths-ignore:
6
+ - 'ansible'
7
+ - 'README.md'
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ build:
15
+ name: Build and test
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - run: docker build --target test --tag todo-app:test .
20
+ - run: docker run --env-file .env.test todo-app:test
0 commit comments