All checks were successful
CI Demo / build (push) Successful in 1m11s
Signed-off-by: Matheus Garcias <matheus.dasilva.garcias@gmail.com>
12 lines
368 B
YAML
12 lines
368 B
YAML
name: CI Demo
|
|
on: [push]
|
|
workflow_dispatch:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest # This job will run on a runner with the 'ubuntu' label
|
|
steps:
|
|
- uses: actions/checkout@v4 # Downloads the code from the repository
|
|
- name: Run a one-line script
|
|
run: echo "Hello, Gitea Actions!"
|
|
- name: Show os-release
|
|
run: cat /etc/os-release |