cmsmanage/.gitea/workflows/test.yml

53 lines
1.4 KiB
YAML
Raw Normal View History

2024-02-16 14:20:35 -05:00
name: Test
2024-07-23 00:01:29 -04:00
on: [push, pull_request]
2024-02-16 14:20:35 -05:00
env:
DJANGO_CONFIGURATION: CI
2024-02-16 14:20:35 -05:00
jobs:
test:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
services:
mariadb:
# TODO: this is pinned to avoid what apears to be a bug with
# MariaDB >= 10.11.9, and collation issues with 11.x.x
image: mariadb:10.11.8
2024-02-16 14:20:35 -05:00
env:
MARIADB_ROOT_PASSWORD: whatever
healthcheck:
2024-07-23 00:01:29 -04:00
test:
[
"CMD",
"healthcheck.sh",
"--su-mysql",
"--connect",
"--innodb_initialized",
]
2024-02-16 14:20:35 -05:00
steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
cache: true
python-version: ~3.11
token: ""
2024-02-16 14:20:35 -05:00
- name: Install apt dependencies
run: >-
sudo apt-get update &&
sudo apt-get -y install build-essential python3-dev libldap2-dev libsasl2-dev mariadb-client
- name: Install python dependencies
run: pdm sync -d -G dev
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
run_install: |
- args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Build JS assets
run: pnpm run build
2024-02-16 14:20:35 -05:00
- name: Run tests
run: pdm run -v ./manage.py test