add --all flag for delete cdn distribution #2363
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: CI | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
types: [ opened, synchronize, reopened, ready_for_review ] | |
jobs: | |
test: | |
name: Test ionosctl | |
env: | |
package-name: ionoscloud | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
outputs: | |
package-name: ${{ env.package-name }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fetch Base Branch | |
run: git fetch --depth=1 origin +refs/heads/${{ env.BASE_BRANCH }}:${{ env.BASE_BRANCH }} | |
shell: bash | |
env: | |
BASE_BRANCH: ${{ github.base_ref }} | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: Install bats-core | |
run: | | |
git clone https://github.com/bats-core/bats-core.git | |
cd bats-core | |
sudo ./install.sh /usr/local | |
shell: bash | |
if: matrix.os == 'ubuntu-latest' | |
- name: Check code format | |
run: make gofmt_check | |
if: matrix.os == 'ubuntu-latest' | |
- name: Build | |
run: make build | |
- name: Install | |
run: make install | |
- name: Run all tests on Ubuntu | |
env: | |
BASE_BRANCH: ${{ github.base_ref }} | |
IONOS_USERNAME: ${{ secrets.IONOS_USERNAME }} | |
IONOS_PASSWORD: ${{ secrets.IONOS_PASSWORD }} | |
run: make test | |
if: matrix.os == 'ubuntu-latest' | |
- name: Run only unit tests on Windows | |
env: | |
IONOS_USERNAME: ${{ secrets.IONOS_USERNAME }} | |
IONOS_PASSWORD: ${{ secrets.IONOS_PASSWORD }} | |
run: make utest | |
if: matrix.os == 'windows-latest' | |
- name: Version | |
run: ionosctl version | |
- name: Clean artifacts | |
run: make clean |