diff --git a/.github/workflows/ci-hello-test.yml b/.github/workflows/ci-hello-test.yml new file mode 100644 index 0000000..38ee4a2 --- /dev/null +++ b/.github/workflows/ci-hello-test.yml @@ -0,0 +1,21 @@ +name: hello test + +on: + push: + branches: + - 'ci*' + pull_request: + branches: + - 'ci*' + +jobs: + my-test: + runs-on: ubuntu-latest + + steps: + - name: my test first step + run: echo "test started" + + - name: my test will fail + run: exit 1 + diff --git a/ci-pipeline.yml b/ci-pipeline.yml new file mode 100644 index 0000000..e381e62 --- /dev/null +++ b/ci-pipeline.yml @@ -0,0 +1,9 @@ +env: + environment: test + +build: + name: Build Docker Image + runs-on: ubuntu-latest + + -name: echoing + run: echo "test"