18 lines
340 B
YAML
18 lines
340 B
YAML
name: test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Echo Hello World
|
|
run: echo "Hello, World!"
|
|
- name: Echo content of "Owo.md"
|
|
run: cat Owo.mod || echo "Owo.md does not exist" |