Skip to content

Commit

Permalink
add sample just workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-naxa committed Dec 11, 2024
1 parent b9287ae commit 84961ee
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/just-file-test.yml
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

0 comments on commit 84961ee

Please sign in to comment.