From fe9788cb26baf08253d3e9265b719b25c5a9ab6c Mon Sep 17 00:00:00 2001 From: Nathan <117750247+Nathan3-14@users.noreply.github.com> Date: Tue, 6 Feb 2024 09:42:14 +0000 Subject: [PATCH] Test action --- .github/workflows/demo.yml | 9 +++++++++ cool_test.py | 1 + 2 files changed, 10 insertions(+) create mode 100644 .github/workflows/demo.yml create mode 100644 cool_test.py diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml new file mode 100644 index 0000000..9f44b82 --- /dev/null +++ b/.github/workflows/demo.yml @@ -0,0 +1,9 @@ +name: Demo +run-name: ${{ github.actor }} demo +on: [push] +jobs: + Test: + runs-on: ubuntu-latest + steps: + - run: echo "Cool test!" + - run: python cool_test.py \ No newline at end of file diff --git a/cool_test.py b/cool_test.py new file mode 100644 index 0000000..5d73b22 --- /dev/null +++ b/cool_test.py @@ -0,0 +1 @@ +print("cool!") \ No newline at end of file