Skip to content

Commit

Permalink
developブランチでのテストを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
poppingmoon committed Oct 30, 2023
1 parent 04affa8 commit 8ddb059
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test_develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test on misskey/develop

on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- run: ./test/testenv/setup.sh
env:
MISSKEY_IMAGE: misskey/misskey:develop
- run: dart pub get
- run: dart test --test-randomize-ordering-seed=random
3 changes: 1 addition & 2 deletions test/testenv/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ services:
- ../:/misskey-test

web:
image: misskey/misskey:2023.10.1
image: ${MISSKEY_IMAGE:-misskey/misskey:latest}
restart: always
links:
- db
- redis
# - meilisearch
depends_on:
db:
condition: service_healthy
Expand Down

0 comments on commit 8ddb059

Please sign in to comment.