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