-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (26 loc) · 882 Bytes
/
example-service.yml
File metadata and controls
36 lines (26 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "*" ]
# pull_request:
# branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker
uses: docker-practice/actions-setup-docker@master
timeout-minutes: 20
- name: Build
run: make -f build/makefiles/example-service/Makefile build
- name: Test
run: make -f build/makefiles/example-service/Makefile test
- name: Tag
run: make -f build/makefiles/example-service/Makefile tag
- name: Publish
run: echo "publish" #make -f build/makefiles/example-service/Makefile publish