Skip to content

Commit

Permalink
fix registry name
Browse files Browse the repository at this point in the history
  • Loading branch information
atimin committed Feb 7, 2024
1 parent 706278b commit 031730f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,27 @@ jobs:
sdk_tests:
name: Client SDK Tests
runs-on: ubuntu-latest
needs:
- rust_fmt
steps:
- uses: actions/checkout@v3
- name: Run Database
run: docker run --network=host -v ${PWD}/misc:/misc --env RS_API_TOKEN=TOKEN -d ${{github.repository}}
run: docker run --network=host -v ${PWD}/misc:/misc --env RS_API_TOKEN=TOKEN -d ${{env.REGISTRY_IMAGE}}
- name: Run Client SDK tests
run: RS_API_TOKEN=TOKEN cargo test --test-threads=1

sdk_examples:
name: Client SDK Examples
runs-on: ubuntu-latest
needs:
- rust_fmt
strategy:
matrix:
example: [ "hallo_world", "query" ]
steps:
- uses: actions/checkout@v3
- name: Run Database
run: docker run --network=host -v ${PWD}/misc:/misc --env RS_API_TOKEN=TOKEN -d ${{github.repository}}
run: docker run --network=host -v ${PWD}/misc:/misc --env RS_API_TOKEN=TOKEN -d ${{env.REGISTRY_IMAGE}}
- name: Run Client SDK tests
run: cargo run --example ${{matrix.example}}

Expand Down

0 comments on commit 031730f

Please sign in to comment.