bot-mastodon-image-uploader/.gitea/workflows/01_test.yaml

18 lines
504 B
YAML
Raw Normal View History

2024-01-29 12:51:05 +00:00
name: Unit Tests with cargo
on: [push, pull_request]
jobs:
unit-test:
container:
image: rust
steps:
- name: Installing necessary packages
run: apt install nodejs git
- name: Check out repository code
uses: actions/checkout@v3
- name: Get access token from secret
run: echo -e ${{ secrets.MASTODON_SECRET }} > mastodon-data.toml
- name: Check code
run: cargo check
- name: Run tests
run: cargo test -- --test-threads=1