16 lines
223 B
YAML
16 lines
223 B
YAML
name: Test CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master, main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- run: echo "hello world"
|
|
- run: uname -a
|
|
- run: id
|