Skip to content

chore: improve nuspec file with additional information #126

chore: improve nuspec file with additional information

chore: improve nuspec file with additional information #126

Workflow file for this run

name: End-to-End test
on:
pull_request:
types: [opened, synchronize]
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-latest
container:
image: golang:1.22.5
env:
CGO_ENABLED: 0 # Statically linked
steps:
- name: Setting GIT
run: git config --global url."https://${{ secrets.GLOBAL_TOKEN }}:[email protected]/aziontech".insteadOf "https://github.com/aziontech"
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setting up a secure repository
run: git config --global --add safe.directory /__w/azion/azion
- name: Install jq
run: |
apt update
apt install -y jq
- name: e2e test
run: |
bash ./scripts/e2e.sh
env:
TOKEN: ${{ secrets.E2E_TOKEN }}