chore: improve nuspec file with additional information #125
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: 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 }} |