tests added
Build image / build (push) Failing after 0s Details
Unit Tests with cargo / unit-test (push) Failing after 0s Details

This commit is contained in:
Alie 2024-02-17 12:31:32 +01:00
parent 24bdf519d4
commit ab34c83342
1 changed files with 11 additions and 8 deletions

View File

@ -4,18 +4,21 @@ on: [push, pull_request]
jobs:
unit-test:
container:
image: rust
volumes:
- /usr/local/cargo:/workspace/fedi-image-bot/bot-mastodon-image-uploader/target:rw
steps:
image: docker:dind
volumes:
- /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: apt update && apt install nodejs git -y
run: apk add nodejs git curl bash
- name: Check out repository code
uses: actions/checkout@v3
- run: pwd && ls
- name: Get access token from secret
run: echo "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml
- name: Check code
run: cargo check
- name: Run tests
run: cargo test -- --test-threads=1
- name: Run tests on docker
run: docker compose down -v && docker compose run bot t