Skip to content

Commit

Permalink
Merge branch 'master' into use-diffrent-ports-for-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NexVeridian committed Jan 30, 2025
2 parents 32e0f8f + 7ca0e99 commit 73c8084
Show file tree
Hide file tree
Showing 334 changed files with 5,366 additions and 13,486 deletions.
82 changes: 0 additions & 82 deletions .github/workflows/demo-ci.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/loco-gen-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,21 @@ jobs:
permissions:
contents: read

services:
postgres:
image: postgres
env:
POSTGRES_DB: postgres_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
# Set health checks to wait until postgres has started
options: --health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5

steps:
- name: Checkout the code
uses: actions/checkout@v4
Expand All @@ -71,3 +86,4 @@ jobs:
run: cargo test --all-features
env:
LOCO_DEV_MODE_PATH: ${{ github.workspace }}
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres_test
9 changes: 3 additions & 6 deletions .github/workflows/loco-gen-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: "[loco-gen-deploy]"

on:
push:
branches:
- master
pull_request:
schedule:
- cron: "0 0 * * *"

env:
RUST_TOOLCHAIN: stable
Expand All @@ -31,7 +28,7 @@ jobs:

- name: install 'loco new'
run: |
cargo install --path ./loco-new
cargo install loco
- name: create myapp
run: |
Expand Down
266 changes: 0 additions & 266 deletions .github/workflows/loco-gen-e2e.yml

This file was deleted.

Loading

0 comments on commit 73c8084

Please sign in to comment.