diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml new file mode 100644 index 0000000000..3ff6278484 --- /dev/null +++ b/.github/workflows/pr-validation.yml @@ -0,0 +1,24 @@ +name: PR Validation + +on: + pull_request: + branches: + - develop + - main + +jobs: + validate: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Show files + run: ls -la + + - name: Simulate Build + run: echo "Building application..." + + - name: Simulate Unit Tests + run: echo "Running tests..." diff --git a/README.md b/README.md index 74e5d335cd..dc705db786 100644 --- a/README.md +++ b/README.md @@ -166,3 +166,5 @@ For more information about the emeritus role, see the [community repository](htt [Tsuga]: https://github.com/tsuga-dev/opentelemetry-demo [Uptrace]: https://github.com/uptrace/uptrace/tree/master/example/opentelemetry-demo [VictoriaMetrics]: https://github.com/VictoriaMetrics-Community/opentelemetry-demo +Testing PR Validation Pipeline +Testing status checks registration \ No newline at end of file