18 lines
332 B
YAML
18 lines
332 B
YAML
name: Test Workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # only triggers on pushes to the main branch
|
|
|
|
jobs:
|
|
hello:
|
|
runs-on: ubuntu-latest # can also use ubuntu-22.04 or ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Say hello
|
|
run: echo "Lets try again!!"
|