17 lines
299 B
YAML
17 lines
299 B
YAML
name: l1-smoke
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
smoke:
|
|
runs-on: docker
|
|
steps:
|
|
- name: 基础信息
|
|
run: |
|
|
echo "hello from runner"
|
|
uname -a
|
|
cat /etc/os-release | head -2
|
|
- name: 环境变量检查
|
|
run: env | sort | head -30 |