From 8f75914eba9b55edfd7cb0234323c7cc15249e81 Mon Sep 17 00:00:00 2001 From: Tomasz Date: Wed, 17 May 2023 11:57:33 +0200 Subject: [PATCH] Github Actions Workflow --- .github/workflows/workflow.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..68ca354 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,13 @@ +name: github-actions-hello +on: [push] +jobs: + hello-job: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v2.2.2 + with: + python-version: '3.7' + - run: python3 --version