Files
Pyarmor-Static-Unpack-1shot/.github/workflows/linux-ci.yml
Michael Hansen 462fc46424 Add JOBS parameter to GH workflows (currently default, but not guaranteed)
... and fix missing newline at EOF
2024-06-23 11:46:17 -07:00

21 lines
381 B
YAML

name: Linux-CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Configure and Build
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make -j4
- name: Test
run: |
cd build
make check JOBS=4