correct ci by renaming workflows folder

This commit is contained in:
2020-03-01 18:18:03 +11:00
parent 7cd6dc6d9f
commit 2648785650
3 changed files with 0 additions and 31 deletions
-14
View File
@@ -1,14 +0,0 @@
name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Unit test
run: auto/test
- name: Build the Docker image
run: auto/build
-17
View File
@@ -1,17 +0,0 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.