Skip to content

Commit

Permalink
add test github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kornpow committed Mar 10, 2023
1 parent f143eba commit 07ce374
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build

on:
push:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: |
ls -alh
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: |
ls -alh
Empty file added .github/workflows/deploy.yml
Empty file.
Empty file.
Empty file added .github/workflows/test.yml
Empty file.

0 comments on commit 07ce374

Please sign in to comment.