Update naming action

This commit is contained in:
larzie 2024-12-25 15:56:57 +03:00 committed by GitHub
parent f05f4a8732
commit 9de985bf23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,9 @@
name: Naming name: Naming
on: [push, pull_request] on:
push:
pull_request:
workflow_dispatch:
jobs: jobs:
ncc: ncc:
@ -8,18 +11,20 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout repository
uses: actions/checkout@v4
- name: Install LLVM and Clang - name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2 uses: KyleMayes/install-llvm-action@v2
with: with:
version: '16' version: '18'
- uses: actions/setup-python@v5 - name: Setup Python
uses: actions/setup-python@v5
with: with:
python-version: '3.12' python-version: '3.13'
- name: Install python libraries - name: Setup Python modules
run: | run: |
pip install -r tools/requirements.txt pip install -r tools/requirements.txt