12 lines
144 B
YAML
12 lines
144 B
YAML
name: First CI
|
|
|
|
on:
|
|
[push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Printing hello
|
|
run: echo "Hello, 🌍"
|