add remi endpoints to sdk and cli (#113) #468
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
name: Test on nuclia.cloud | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
repository_dispatch: | |
type: test-prod | |
jobs: | |
test: | |
name: Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
cache: 'pip' | |
- name: Install package | |
run: make install | |
- name: Run pre-checks | |
run: make lint | |
- name: Test | |
run: GA_TESTING_SERVICE_TOKEN="${{ secrets.GA_TESTING_SERVICE_TOKEN }}" GA_TESTING_TOKEN="${{ secrets.GA_TESTING_TOKEN }}" GA_TESTING_NUA="${{ secrets.TEST_EUROPE1_NUCLIA_NUA }}" make test |