Enable setting credentials using profile default:(~/.osc/config.json) #210
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: Nets Acceptances tests | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '**.go' | |
- '**.sum' | |
- '**.mod' | |
- 'GNUmakefile' | |
workflow_dispatch: | |
jobs: | |
Nets_acceptances_tests: | |
environment: test-us-east-2 | |
runs-on: [self-hosted, linux, us-east-2] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: outscale-dev/frieza-github-actions/frieza-clean@master | |
with: | |
access_key: ${{ secrets.OSC_ACCESS_KEY }} | |
secret_key: ${{ secrets.OSC_SECRET_KEY }} | |
region: ${{ secrets.OSC_REGION }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: Build go test | |
run: make test | |
env: | |
OUTSCALE_ACCESSKEYID: ${{ secrets.OSC_ACCESS_KEY }} | |
OUTSCALE_SECRETKEYID: ${{ secrets.OSC_SECRET_KEY }} | |
OUTSCALE_REGION: ${{ secrets.OSC_REGION }} | |
OUTSCALE_ACCOUNT: ${{ secrets.OSC_ACCOUNT_ID }} | |
OUTSCALE_IMAGEID: ${{ secrets.OUTSCALE_IMAGEID }} | |
- name: Run nets acceptances tests | |
run: make test-net | |
env: | |
OUTSCALE_ACCESSKEYID: ${{ secrets.OSC_ACCESS_KEY }} | |
OUTSCALE_SECRETKEYID: ${{ secrets.OSC_SECRET_KEY }} | |
OUTSCALE_REGION: ${{ secrets.OSC_REGION }} | |
OUTSCALE_ACCOUNT: ${{ secrets.OSC_ACCOUNT_ID }} | |
OUTSCALE_IMAGEID: ${{ secrets.OUTSCALE_IMAGEID }} |