-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (29 loc) · 774 Bytes
/
Copy pathmakefile.yml
File metadata and controls
42 lines (29 loc) · 774 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
36
37
38
39
40
41
42
name: Makefile CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: get swagger file
run: make _defs/swagger.json
- name: Install python requirements
run: make reqs
- name: Create config dir, copy example file and set permissions of all config files
run: make cfg
- name: TAR and backup
run: make back
- name: Remove generated files
run: make clean
- name: Remove unneeded mac files
run: make nomac
- name: About this Makefile
run: make about
- name: Copyright notice
run: make copying
- name: Show this help
run: make help