chore(deps): bump @octokit/rest from 20.1.0 to 20.1.1 #292
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: | |
push: | |
branches: [ main, "releases/v*"] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
version: [ "latest", "1.67.0" ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Exoscale CLI | |
uses: ./ | |
with: | |
version: ${{ matrix.version }} | |
- name: Test the CLI | |
run: exo version | |
test-authenticated: | |
name: Test Authenticated | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
version: [ "latest", "1.67.0" ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Exoscale CLI | |
uses: ./ | |
with: | |
zone: ch-gva-2 | |
version: ${{ matrix.version }} | |
account: ${{ secrets.EXOSCALE_ACCOUNT }} | |
key: ${{ secrets.EXOSCALE_KEY }} | |
secret: ${{ secrets.EXOSCALE_SECRET }} | |
- name: Test the CLI | |
run: exo config list |