Updating version number and README files to 2024 #96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |