defining workflows #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Project | ||
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" |