feat(configuration): extends with allowed_addional_status_code (#577) #179
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: Build and validate Souin as plugins | |
on: | |
push: | |
branches: | |
- master | |
env: | |
GO_VERSION: '1.22' | |
jobs: | |
build-caddy-validator: | |
name: Check that Souin build as caddy module and can be tagged on master | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Add domain.com host to /etc/hosts | |
run: | | |
sudo echo "127.0.0.1 domain.com" | sudo tee -a /etc/hosts | |
- | |
name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- | |
name: Checkout code | |
uses: actions/checkout@v4 | |
- | |
name: Install xcaddy | |
run: go install github.com/caddyserver/xcaddy/cmd/xcaddy@latest | |
- | |
name: Build current Souin as caddy module with referenced Souin core version when merge on master | |
run: cd plugins/caddy && xcaddy build --with github.com/${{ github.repository }}/plugins/caddy@$(git rev-parse --short "$GITHUB_SHA") --with github.com/darkweak/storages/badger/caddy --with github.com/darkweak/storages/etcd/caddy --with github.com/darkweak/storages/nats/caddy --with github.com/darkweak/storages/nuts/caddy --with github.com/darkweak/storages/olric/caddy --with github.com/darkweak/storages/otter/caddy --with github.com/darkweak/storages/redis/caddy |