Skip to content

Do not add ampersand at end of URL with no params #36

Do not add ampersand at end of URL with no params

Do not add ampersand at end of URL with no params #36

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: ubuntu-22.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: [25.3.2.12, 26.2.5]
elixir: [1.14, 1.15, 1.16]
steps:
- name: Checkout codebase
uses: actions/checkout@v4
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Install Mix Dependencies
run: mix deps.get
- name: Run Elixir Tests
run: mix test