mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-26 15:54:20 -04:00
chore: rewrite makefile in taskfile (#3035)
* add docker-compose with development dependencies * delete old runtime.txt file * specify specific group for postgres deps * replace makefile with taskfile with new features * drop template.env file in favor of defaults within taskfile * use with github actions * update docs for taskfile changes * update task.json for vscode * add taskfile to devcontainer.json * pre-install taskfile so startup command works * remove run command and fix desc for ui * change node-> python->py for consistency
This commit is contained in:
12
.github/workflows/partial-backend.yml
vendored
12
.github/workflows/partial-backend.yml
vendored
@@ -35,6 +35,12 @@ jobs:
|
||||
|
||||
# Steps
|
||||
steps:
|
||||
- name: Install Task
|
||||
uses: arduino/setup-task@v1
|
||||
with:
|
||||
version: 3.x
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
@@ -78,11 +84,11 @@ jobs:
|
||||
|
||||
- name: Lint (Ruff)
|
||||
run: |
|
||||
make backend-lint
|
||||
task py:lint
|
||||
|
||||
- name: Mypy Typecheck
|
||||
run: |
|
||||
make backend-typecheck
|
||||
task py:mypy
|
||||
|
||||
- name: Pytest
|
||||
env:
|
||||
@@ -101,4 +107,4 @@ jobs:
|
||||
LDAP_NAME_ATTRIBUTE: cn
|
||||
LDAP_MAIL_ATTRIBUTE: mail
|
||||
run: |
|
||||
make backend-test
|
||||
task py:test
|
||||
|
||||
Reference in New Issue
Block a user