Skip to content

Commit

Permalink
Added test job to main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
John-J-Riehl authored Aug 29, 2024
1 parent add4ccf commit 9918c50
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ on: push
jobs:
build:
runs-on: ubuntu-latest

steps:
# checks out the current git commit so we can use it.
# read more at https://github.com/orgs/community/discussions/25682
- uses: actions/checkout@v4

- name: Run a one-line script
run: echo "Write your CI workflow here!"

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test the code
run: echo "Replace this with the test code"

0 comments on commit 9918c50

Please sign in to comment.