yaml is a thing
Unit Tests with docker compose and cargo / unit-test (push) Failing after 17s Details
Build image / build (push) Has been cancelled Details

This commit is contained in:
Alie 2024-02-17 12:42:51 +01:00
parent e162ec5f41
commit 15bb1af218
1 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
name: Unit Tests with cargo
name: Unit Tests with docker compose and cargo
on: [push, pull_request]
jobs:
@ -9,16 +9,16 @@ jobs:
- /data/.cache/act:/data/.cache/act
- /var/lib/docker/image:/var/lib/docker/image
- /var/lib/docker/overlay2:/var/lib/docker/overlay2
steps:
- name: Starting docker daemon
run: docker-init -- dockerd --host=unix:///var/run/docker.sock &
- name: Installing necessary packages
run: apk add nodejs git curl bash
- name: Check out repository code
uses: actions/checkout@v3
- name: Get access token from secret
run: echo "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml
- name: Check code
run: cargo check
- name: Run tests on docker
run: docker compose down -v && docker compose run bot t
steps:
- name: Starting docker daemon
run: docker-init -- dockerd --host=unix:///var/run/docker.sock &
- name: Installing necessary packages
run: apk add nodejs git curl bash
- name: Check out repository code
uses: actions/checkout@v3
- name: Get access token from secret
run: echo "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml
- name: Check code
run: cargo check
- name: Run tests on docker
run: docker compose down -v && docker compose run bot t