build and test pipelines #2

Merged
bizcochito merged 37 commits from build into develop 2024-02-23 07:14:21 +00:00
1 changed files with 11 additions and 8 deletions
Showing only changes of commit ab34c83342 - Show all commits

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