Skip to content

Commit

Permalink
Update CI build
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Ehrhardt <59441+jehrhardt@users.noreply.github.com>
  • Loading branch information
jehrhardt committed Feb 3, 2025
1 parent dea9fff commit 520d92e
Showing 1 changed file with 8 additions and 38 deletions.
46 changes: 8 additions & 38 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,50 +6,20 @@ on:
pull_request:
branches: ["main"]

permissions:
contents: read

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build:
name: Build and test
name: Build and test desktop
runs-on: ubuntu-latest

services:
postgres:
image: supabase/postgres:15.6.1.117
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: cozycoder_test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
gleam-version: "1.5.1"
otp-version: "27"
rebar3-version: "3"
- name: Restore dependencies cache
uses: actions/cache@v4
- uses: jdx/mise-action@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
install: true
cache: true
- name: Install dependencies
run: gleam deps download
run: deno install
- name: Enforce formatting
run: gleam format --check src test
- name: Run tests
run: gleam test
run: deno fmt --check
- name: Build app
run: deno task tauri build

0 comments on commit 520d92e

Please sign in to comment.