feat: IPv6 #2012
Workflow file for this run
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: | |
push: | |
branches: [ master ] | |
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@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: Check code format | |
run: make gofmt_check | |
if: matrix.os == 'ubuntu-latest' | |
- name: Run all tests on Ubuntu | |
env: | |
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: Build | |
run: make build | |
- name: Install | |
run: make install | |
- name: Version | |
run: ionosctl version | |
- name: Clean artifacts | |
run: make clean |