Skip to content

fix: azure tests and add azure ci test #18

fix: azure tests and add azure ci test

fix: azure tests and add azure ci test #18

Workflow file for this run

name: azurite functional tests
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
id: go
- name: Set up Docker Compose
run: |
docker compose -f tests/docker-compose.yml --env-file .env.dev --project-directory . up azurite azuritegw
- name: Wait for Azurite to be ready
run: sleep 10
- name: Get Dependencies
run: |
go mod download
- name: Build and Run
run: |
make
./versitygw test -a user -s pass -e http://127.0.0.1:7070 full-flow
- name: Shut down services
run: |
docker compose -f tests/docker-compose.yml down azurite azuritegw