diff --git a/.github/workflows/hw.yml b/.github/workflows/hw.yml index 01502b1..9436015 100644 --- a/.github/workflows/hw.yml +++ b/.github/workflows/hw.yml @@ -15,8 +15,8 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - build: + # This job checks out code from the repo + checkout: # The type of runner that the job will run on runs-on: ubuntu-latest @@ -24,8 +24,14 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - + + # This job does the core processing + process: + # The type of runner that the job will run on + runs-on: ubuntu-latest # Runs a single command using the runners shell + + steps: - name: Run a one-line script run: echo Hello, world!