forked from hotosm/tasking-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9287ae
commit 84961ee
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Just CI Workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- feat-justfile | ||
|
||
jobs: | ||
test-and-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Step 1: Checkout the repository | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- uses: extractions/setup-just@v2 | ||
with: | ||
just-version: '1.37.0' | ||
|
||
# Step 3: Run backend functional tests | ||
- name: Run backend functional tests | ||
run: just backend-functional-tests | ||
|
||
# Step 4: Run backend code checks | ||
- name: Run backend code checks | ||
run: just backend-code-check |