Separating actions to configure badges

This commit is contained in:
Melefo
2020-01-21 10:40:36 +01:00
parent bb0387332e
commit 2145c6ce53
2 changed files with 23 additions and 16 deletions
+22
View File
@@ -0,0 +1,22 @@
name: Build commit artifact
on:
push:
branches:
- master
jobs:
Building:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Build Makefile with CMake
run: cmake .
- name: Build with Makefile
run: make
- name: Archive production artifact
uses: actions/upload-artifact@v1
with:
name: ComSquare
path: ComSquare
@@ -1,4 +1,4 @@
name: Build commit artifact
name: Testing current commit
on:
push:
@@ -6,21 +6,6 @@ on:
- master
jobs:
Building:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Build Makefile with CMake
run: cmake .
- name: Build with Makefile
run: make
- name: Archive production artifact
uses: actions/upload-artifact@v1
with:
name: ComSquare
path: ComSquare
Testing:
runs-on: [ubuntu-latest]