Packages

Flowy framework project generator. Provides a `mix flowy.new` task to bootstrap a new Elixir application with Flowy dependencies.

Current section

Files

Jump to
flowy_new templates phx_single github workflows test.yml
Raw

templates/phx_single/github/workflows/test.yml

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
build-test:
name: Build and test
runs-on: ubuntu-latest
services:
db:
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
image: postgres:16
ports: ["5432:5432"]
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
MIX_ENV: test
DBUSER: postgres
DBPASSWORD: postgres
steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-elixir@v1
with:
elixir-version: "1.15.7" # Define the elixir version [required]
otp-version: "26.1.2" # Define the OTP version [required]
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- name: Check Formatting
run: mix format --check-formatted
- name: Audit
run: mix deps.audit
- name: Linter
run: mix credo
- name: Doctor
run: mix doctor --full --raise
- name: Run tests
run: mix coveralls.json
env:
MIX_ENV: test
- name: Upload to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov