diff --git a/.github/workflows/test-simple.yml b/.github/workflows/test-simple.yml new file mode 100644 index 0000000..762c7b9 --- /dev/null +++ b/.github/workflows/test-simple.yml @@ -0,0 +1,14 @@ +name: Simple Test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + simple: + runs-on: ubuntu-latest + steps: + - name: Echo test + run: echo "Hello from GitHub Actions"