Skip to content

Merge pull request #1646 from vlomonaco/master #1875

Merge pull request #1646 from vlomonaco/master

Merge pull request #1646 from vlomonaco/master #1875

Workflow file for this run

################################################################################
# Copyright (c) 2021 ContinualAI. #
# Copyrights licensed under the MIT License. #
# See the accompanying LICENSE file for terms. #
# #
# Date: 28-01-2021 #
# Author(s): Gabriele Graffieti #
# E-mail: contact@continualai.org #
# Website: avalanche.continualai.org #
################################################################################
name: syntax checking
# This workflow is triggered on pushes to the repository.
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
check:
name: check_syntax
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v2
with:
python-version: "3.10.12"
- uses: cclauss/Find-Python-syntax-errors-action@master