2023-04-21 15:41:48 +00:00
|
|
|
name: Tests
|
2023-03-28 15:36:48 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
2023-04-21 21:43:46 +00:00
|
|
|
branches-ignore:
|
|
|
|
- master
|
|
|
|
workflow_call:
|
2023-03-28 15:36:48 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2023-10-31 23:46:24 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
nim:
|
|
|
|
- "1.6.10"
|
|
|
|
- "1.6.x"
|
|
|
|
- "2.0.x"
|
2023-03-28 15:36:48 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Cache nimble
|
|
|
|
id: cache-nimble
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: ~/.nimble
|
|
|
|
key: nimble-${{ hashFiles('*.nimble') }}
|
|
|
|
restore-keys: "nimble-"
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: "3.10"
|
|
|
|
cache: "pip"
|
|
|
|
- uses: jiro4989/setup-nim-action@v1
|
|
|
|
with:
|
2023-10-31 23:46:24 +00:00
|
|
|
nim-version: ${{ matrix.nim }}
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2023-03-28 15:36:48 +00:00
|
|
|
- run: nimble build -d:release -Y
|
|
|
|
- run: pip install seleniumbase
|
|
|
|
- run: seleniumbase install chromedriver
|
|
|
|
- uses: supercharge/redis-github-action@1.5.0
|
|
|
|
- name: Prepare Nitter
|
|
|
|
run: |
|
|
|
|
sudo apt install libsass-dev -y
|
|
|
|
cp nitter.example.conf nitter.conf
|
|
|
|
nimble md
|
|
|
|
nimble scss
|
|
|
|
- name: Run tests
|
2023-08-21 09:25:27 +00:00
|
|
|
env:
|
|
|
|
GUEST_ACCOUNTS: ${{ secrets.GUEST_ACCOUNTS }}
|
2023-03-28 15:36:48 +00:00
|
|
|
run: |
|
2023-10-31 23:54:11 +00:00
|
|
|
echo $GUEST_ACCOUNTS > ./guest_accounts.jsonl
|
2023-03-28 15:36:48 +00:00
|
|
|
./nitter &
|
|
|
|
pytest -n4 tests
|