Skip to content

Bump socket.io-parser from 3.3.3 to 3.3.4 in /node #671

Bump socket.io-parser from 3.3.3 to 3.3.4 in /node

Bump socket.io-parser from 3.3.3 to 3.3.4 in /node #671

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: C style check
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "check-style"
check-style:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- id: install-python-deps
run: pip3 install -r requirements.txt
- id: style-check
run: meson builddir; cd builddir; ninja cpplint