12 lines
173 B
YAML
Executable File
12 lines
173 B
YAML
Executable File
name: Test Workflow
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Print message
|
|
run: echo "Hello, world!"
|