mirror of
https://github.com/plausible/analytics.git
synced 2024-12-25 02:24:55 +03:00
b9ec38038c
* Update applications * Clone community config * Move modules to experimental dir * Update runtime config * Apply first set of compile-time conditionals * Move funnel schemas to experimental * Make funnel schema-less build compile * Use experimental/lib for elixir code * Move JS funnels to experimental * Clean up conditional rendering * Tidy up the pipeline * Make two builds pass tests without warnings * Reuse existing dotenvs * Do a bunch of renames * Clean up naming * Run secondary CI * Update router * Remove RewriteFunnelDupes migration Tests were disabled already and it was a one-off shot * Fixup quota mixins * Add moduledoc * Change MIX_ENV for seconary test run * Skip crm on small * !fixup * Exclude flags pipeline * Update lib/plausible_web/controllers/stats_controller.ex Co-authored-by: Adrian Gruntkowski <adrian.gruntkowski@gmail.com> --------- Co-authored-by: Adrian Gruntkowski <adrian.gruntkowski@gmail.com>
85 lines
2.3 KiB
YAML
85 lines
2.3 KiB
YAML
name: Elixir CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master, stable]
|
|
pull_request:
|
|
branches: [master, stable]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and test
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
postgres_version: [13, 14, 15]
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:${{ matrix.postgres_version }}
|
|
ports:
|
|
- 5432:5432
|
|
env:
|
|
POSTGRES_PASSWORD: postgres
|
|
options: >-
|
|
--health-cmd pg_isready
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
clickhouse:
|
|
image: clickhouse/clickhouse-server:23.3.7.5-alpine
|
|
ports:
|
|
- 8123:8123
|
|
env:
|
|
options: >-
|
|
--health-cmd nc -zw3 localhost 8124
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Read .tool-versions
|
|
uses: marocchino/tool-versions-action@v1
|
|
id: versions
|
|
- name: Set up Elixir
|
|
uses: erlef/setup-beam@v1
|
|
with:
|
|
elixir-version: ${{steps.versions.outputs.elixir}}
|
|
otp-version: ${{ steps.versions.outputs.erlang}}
|
|
- name: Restore dependencies cache
|
|
uses: buildjet/cache@v3
|
|
with:
|
|
path: |
|
|
deps
|
|
_build
|
|
priv/plts
|
|
key: ${{ runner.os }}-mix-v6-${{ hashFiles('**/mix.lock') }}
|
|
restore-keys: ${{ runner.os }}-mix-v6-
|
|
- name: Install dependencies
|
|
run: mix deps.get && npm install --prefix ./tracker
|
|
- name: Check Formatting
|
|
run: mix format --check-formatted
|
|
- name: Check Compile Warnings
|
|
run: mix compile --warnings-as-errors --all-warnings
|
|
- name: Generate tracker files
|
|
run: npm run deploy --prefix ./tracker
|
|
- name: Check Credo Warnings
|
|
run: mix credo diff --from-git-merge-base origin/master
|
|
- name: Run tests
|
|
run: mix test --include slow --max-failures 1 --warnings-as-errors
|
|
- name: Run tests (small build)
|
|
run: MIX_ENV=small_test mix test --include slow --max-failures 1 --warnings-as-errors
|
|
- name: Check Dialyzer
|
|
run: mix dialyzer
|
|
env:
|
|
MIX_ENV: test
|