chore(ci): fix

This commit is contained in:
2024-12-18 18:27:31 +07:00
parent 18aa7935cb
commit 707bcc14c3

View File

@ -9,11 +9,16 @@ jobs:
# Build job # Build job
build: build:
# Specify runner + build & upload the static files as an artifact # Specify runner + build & upload the static files as an artifact
runs-on: python:latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
id: checkout-code id: checkout-code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip' # caching pip dependencies
- name: Install dependencies - name: Install dependencies
id: install id: install
run: | run: |