update
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 1m16s

This commit is contained in:
hoangvv 2025-01-14 18:28:29 +07:00
parent 7f979a96c0
commit cba154a3a3

View File

@ -27,7 +27,7 @@ jobs:
eval "$(pyenv virtualenv-init -)" eval "$(pyenv virtualenv-init -)"
pyenv virtualenv ${{ matrix.python }} "${{ github.ref_name }}-$(git rev-parse --short "$GITHUB_SHA")" pyenv virtualenv ${{ matrix.python }} "${{ github.ref_name }}-$(git rev-parse --short "$GITHUB_SHA")"
- name: Activate Virtual Environment - name: Activate Virtual Environment And Setup
run: | run: |
export PATH="$HOME/.pyenv/bin:$PATH" export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init --path)" eval "$(pyenv init --path)"
@ -35,12 +35,8 @@ jobs:
eval "$(pyenv virtualenv-init -)" eval "$(pyenv virtualenv-init -)"
pyenv activate "${{ github.ref_name }}-$(git rev-parse --short "$GITHUB_SHA")" pyenv activate "${{ github.ref_name }}-$(git rev-parse --short "$GITHUB_SHA")"
python --version # Confirm Python version python --version # Confirm Python version
pip install python-dotenv
- name: Install dotenv pip install --no-input -r requirements.txt
run: pip install python-dotenv --break-system-packages
- name: Setup
run: make install
- name: Generate Config - name: Generate Config
run: make gen_config run: make gen_config