File: test.yml

package info (click to toggle)
libsimpleini 4.19%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 704 kB
  • sloc: cpp: 3,194; makefile: 74; sh: 3
file content (23 lines) | stat: -rw-r--r-- 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Test SimpleIni

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  Ubuntu:
    runs-on: ubuntu-latest
    steps:
    - name: Install requirements
      run: sudo apt install libgtest-dev
    - uses: actions/checkout@v2
    - run: make all && make test
  MacOS:
    runs-on: macos-latest
    steps:
    - name: Install requirements
      run: brew install googletest
    - uses: actions/checkout@v2
    - run: make all && make test