From fd70f09fce83b82989f8c454dc0150697c2d8512 Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Wed, 14 Feb 2024 10:41:33 -0700 Subject: [PATCH] add simple test action --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3bc7559 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,13 @@ +name: GitHub Actions Demo + +on: + push: + branches: [ 'master', 'main', 'testactions', 'release/**' ] + pull_request: + branches: [ '*' ] + +jobs: + testjob: + runs-on: ubuntu-latest + steps: + - run: echo "Hello World"