From aacf9a9aea027028bd78f8ee1945211a0fa31aee Mon Sep 17 00:00:00 2001 From: Simon Liu Date: Wed, 28 Feb 2024 09:58:39 -0800 Subject: [PATCH] initial implementation of regeression github action --- .github/workflows/regression.yml | 13 +++++++++++++ .gitignore | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/regression.yml diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml new file mode 100644 index 0000000000..eafd2b28d9 --- /dev/null +++ b/.github/workflows/regression.yml @@ -0,0 +1,13 @@ +name: Hello World + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Print Hello World + run: echo "Hello, World!" + \ No newline at end of file diff --git a/.gitignore b/.gitignore index e1f64c7fff..269cc33266 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,5 @@ /.idea/vcs.xml .pytest_cache /tests/out_report.xml -__pycache__ \ No newline at end of file +__pycache__ +.python-version \ No newline at end of file