Skip to content

Fix typos found by codespell #41

Fix typos found by codespell

Fix typos found by codespell #41

Workflow file for this run

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@v3
- run: make all && make test
MacOS:
runs-on: macos-latest
steps:
- name: Install requirements
run: brew install googletest
- uses: actions/checkout@v3
- run: make all && make test