Skip to content

Commit 51fabdb

Browse files
committed
ci情報をテスト追加
1 parent fc3984f commit 51fabdb

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# AlterISO5のビルドを行うGithub Actions
2+
3+
name: build AlterISO5
4+
5+
on:
6+
push:
7+
branches:
8+
- dev
9+
pull_request:
10+
branches:
11+
- dev
12+
workflow_dispatch:
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v2
21+
22+
- name: Build Dockerfile
23+
run: docker build -t alteriso5 .
24+
25+
- name: Run Dockerfile
26+
run: docker run -it --rm -v $(pwd):/mnt alteriso5

0 commit comments

Comments
 (0)