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