Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
arashbm committed Oct 20, 2024
1 parent b99d456 commit eff33ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
architecture: 'x64'
- name: upgrade pip
run: pip install --upgrade pip
- name: install cpplint
run: pip install cpplint==1.4.4
run: pip install cpplint==2.0.0
- name: run cpplint
run: cpplint --extensions=tpp,cpp,hpp --quiet --recursive .
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2022, macos-12]
os: [ubuntu-24.04, windows-2022, macos-14]

steps:
- name: Install Pre-requisits on ubuntu
Expand All @@ -28,7 +28,7 @@ jobs:
ninja --version
cmake --version
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: cmake build
run: |
mkdir build
Expand Down

0 comments on commit eff33ab

Please sign in to comment.