chore(main): release 1.4.1 #111
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: Test | |
on: | |
push: | |
branches: | |
- feature/* | |
- bugfix/* | |
- hotfix/* | |
- develop | |
- main | |
jobs: | |
test: | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Create Makefile | |
run: | | |
git init | |
echo 'export WORKSPACE=$(shell pwd)' | tee Makefile | |
echo 'export HABITS = $(WORKSPACE)/habits' | tee --append Makefile | |
echo 'include $(HABITS)/lib/make/Makefile' | tee --append Makefile | |
echo 'include $(HABITS)/lib/make/*/Makefile' | tee --append Makefile | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
path: habits | |
- name: Habits Install | |
run: make habits/install | |
- name: Habits Init | |
run: make habits/init | |
- name: Generate documentation | |
run: make doc/build | |
- name: Habits Check | |
run: make habits/check | |
- name: Uninstall Habits | |
run: make habits/remove |