-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add checkout step to each run (#16)
- Loading branch information
1 parent
d0befaa
commit 6c2de92
Showing
1 changed file
with
6 additions
and
3 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 |
---|---|---|
|
@@ -31,7 +31,8 @@ jobs: | |
name: Run test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: openfga/[email protected] | ||
- uses: actions/checkout@v4 | ||
- uses: openfga/[email protected] | ||
``` | ||
### Running tests of `*.fga.yaml` files present in a given folder | ||
|
@@ -47,7 +48,8 @@ jobs: | |
name: Run test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: openfga/[email protected] | ||
- uses: actions/checkout@v4 | ||
- uses: openfga/[email protected] | ||
with: | ||
test_path: example | ||
``` | ||
|
@@ -65,7 +67,7 @@ jobs: | |
name: Run test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: openfga/[email protected] | ||
- uses: openfga/[email protected].1 | ||
with: | ||
test_path: example/model.fga.yaml | ||
``` | ||
|
@@ -96,6 +98,7 @@ jobs: | |
OPENFGA_DATASTORE_URI: 'postgres://openfga:[email protected]:5432/openfga' | ||
OPENFGA_LOG_LEVEL: debug | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install OpenFGA server v1.5.3 | ||
uses: jaxxstorm/[email protected] | ||
with: | ||
|