Skip to content

fix: change route match priority so metrics page is not hijacked #73

fix: change route match priority so metrics page is not hijacked

fix: change route match priority so metrics page is not hijacked #73

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
static-analysis:
name: Static Analysis
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: gatherly_dev
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: v1.17-otp-27
otp-version: OTP-27
- name: Install Dependencies
run: mix deps.get
- name: Check Format
run: mix format --check-formatted
- name: Run tests
run: mix coveralls.json
env:
MIX_ENV: test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
deploy:
name: Deploy app
needs: static-analysis
runs-on: ubuntu-latest
environment: prod
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}