update @native
Some checks failed
Setup Docker Action / setup_docker (3.12.7) (push) Has been skipped
Setup Native Action / setup_native (3.12.7) (push) Failing after 1m46s

This commit is contained in:
hoangvv 2025-01-15 09:40:57 +07:00
parent 5a96182522
commit b70b871d5f

View File

@ -18,9 +18,6 @@ jobs:
with: with:
ref: ${{ github.ref_name }} ref: ${{ github.ref_name }}
- name: Install Postgre
uses: ikalnytskyi/action-setup-postgres@v7
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
@ -30,16 +27,16 @@ jobs:
run: python -m venv venv run: python -m venv venv
- name: Activate virtual environment and install dependencies - name: Activate virtual environment and install dependencies
run: | run: make install
source venv/bin/activate - name: Install Postgres
make install uses: ikalnytskyi/action-setup-postgres@v7
id: postgres
- name : Test postgres
run: psql postgresql://postgres:postgres@localhost:5432/postgres -c "SELECT 1"
- name: Generate Config - name: Generate Config
run: | run: make gen_config
source venv/bin/activate
make gen_config
- name: Run Tests - name: Run Tests
run: | run: make run_test
source venv/bin/activate
make run_test