mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 22:08:02 +00:00
12 lines
191 B
YAML
12 lines
191 B
YAML
|
name: alpine
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
main:
|
||
|
runs-on: ubuntu-latest
|
||
|
container: alpine
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- run: cat /.dockerenv
|
||
|
- run: ls
|