-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch from generating openapi client to pulling it in from branch
- Loading branch information
Showing
3 changed files
with
47 additions
and
7 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,32 @@ | ||
name: Client freeze test | ||
on: push | ||
|
||
jobs: | ||
client-freeze-test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/checkout@master | ||
with: | ||
name: populationgenomics/metamist | ||
ref: refs/b142392 | ||
path: metamist-legacy-client | ||
|
||
- name: "Copy python api files" | ||
run: | | ||
cp -R metamist-legacy-client/api/ metamist/api/ | ||
cp -R metamist-legacy-client/metamist/api/ metamist/api/ | ||
cp -R metamist-legacy-client/metamist/apis/ metamist/apis/ | ||
cp -R metamist-legacy-client/metamist/model/ metamist/model/ | ||
cp -R metamist-legacy-client/metamist/models/ metamist/models/ | ||
cp metamist-legacy-client/metamist/*.py metamist/ | ||
- name: "List" | ||
run: | | ||
ls -la metamist | ||
ls -la metamist/api | ||
ls -la metamist/apis | ||
ls -la metamist/models | ||
ls -la metamist/model |
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
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