Skip to content

Commit

Permalink
Upgrade Github Actions versions (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy authored Mar 9, 2024
1 parent 698fc9c commit f294e6f
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
name: Check Code
name: Check Python Code

on:
push:
branches: [ main ]
paths-ignore:
- 'cpp/**'
- 'sandbox/**'
- 'ui/**'
pull_request:
branches: [ main ]
paths-ignore:
- 'cpp/**'
- 'sandbox/**'
- 'ui/**'
workflow_dispatch: {}

jobs:
build:
name: Check Code
name: Check Python Code
timeout-minutes: 30

runs-on: ubuntu-22.04
Expand All @@ -23,10 +26,10 @@ jobs:
python-version: ['3.11']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit f294e6f

Please sign in to comment.