persistence/.gitea/workflows/test.yaml

54 lines
1.7 KiB
YAML
Raw Normal View History

2024-12-18 11:49:05 +05:00
name: Run Tests
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
2024-12-17 14:05:14 +05:00
jobs:
2024-12-18 11:49:05 +05:00
run_tests:
2024-12-17 14:05:14 +05:00
runs-on: ubuntu-latest
2024-12-18 11:49:05 +05:00
container: catthehacker/ubuntu:act-latest
2024-12-17 14:05:14 +05:00
steps:
2024-12-18 13:15:21 +05:00
- name: Checkout Codebase
uses: actions/checkout@v4
2024-12-18 12:06:35 +05:00
2024-12-18 13:15:21 +05:00
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
2024-12-18 11:49:05 +05:00
2024-12-18 13:15:21 +05:00
- name: Check out repository code
uses: actions/checkout@v4
2024-12-18 11:49:05 +05:00
- name: Configure and install postgres
run: |
2024-12-18 13:56:40 +05:00
sudo apt-get install wget ca-certificates
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" >> /etc/apt/sources.list.d/pgdg.list'
sudo apt-get update
2024-12-18 13:59:48 +05:00
sudo apt-get -y install postgresql-15
2024-12-18 11:49:05 +05:00
service postgresql start
2024-12-18 12:38:31 +05:00
sudo -u postgres -s psql -U postgres -d postgres -c "alter user postgres with password 'postgres'; SELECT version();"
2024-12-18 13:59:48 +05:00
sudo -u postgres -s psql -U postgres -d postgres -c "CREATE DATABASE persistence WITH OWNER 'postgres'"
sudo locale -a
2024-12-18 13:59:48 +05:00
#ENCODING 'UTF8' LC_COLLATE = 'en_US.UTF-8' LC_CTYPE = 'en_US.UTF-8' TEMPLATE = template0
#
2024-12-18 11:49:05 +05:00
# - uses: pdm-project/setup-pdm@v3
# with:
# python-version: 3.10
# token: ${{ secrets.GH_TOKEN }}
# - name: Install dependencies
# run: cd ${{ gitea.workspace }} && pdm install
2024-12-18 12:06:35 +05:00
2024-12-18 13:15:21 +05:00
- name: Run integration tests
env:
DB_HOST: localhost
DB_USER: postgres
DB_NAME: persistence
DB_PASSWORD: postgres
LANG: ru_RU.UTF-8
2024-12-18 12:06:35 +05:00
2024-12-18 13:15:21 +05:00
run: |
dotnet test DD.Persistence.IntegrationTests