Skip to content

updated workflow for github usinging github action checkout #3

updated workflow for github usinging github action checkout

updated workflow for github usinging github action checkout #3

Workflow file for this run

name: Test Project

Check failure on line 1 in .github/workflows/test_workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_workflow.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: test3
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Run tests
run: echo "Running tests"
- name: Run Test2
run: echo "Running Test2"
test2:
runs-on: ubuntu-latest
steps:
- name: Run tests
run: echo "Running tests"
- name: Run Test2
run: echo "Running Test2"
test3:
runs-on: ubuntu-latest # gtihub hosted runner
setps:
- name: Get the code
uses: actions/checkout@v4" # action checkout
- name: Run tests
run: python --version
- name: check python3
run: python3 --version