mirror of
https://github.com/benhoyt/inih.git
synced 2025-01-28 22:52:54 +08:00
23 lines
337 B
YAML
23 lines
337 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build-linux:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Run Diff Tests
|
|
run: |
|
|
cd tests
|
|
./unittest.sh
|
|
cd ../examples
|
|
./cpptest.sh
|
|
git diff --exit-code
|