Skip to content

Commit

Permalink
ci: add toml-test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ToruNiina committed Jun 16, 2024
1 parent 29f8517 commit 5dcbec0
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/toml-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: build

on: [push, pull_request]

jobs:
toml-test:
runs-on: Ubuntu-22.04
strategy:
matrix:
compiler: ['g++-12']
standard: ['11', '14', '17', '20']
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install
run: |
sudo apt update
sudo apt install -y ${{ matrix.compiler }} golang-go
- name: Configure
run: |
cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TOML_TESTS=ON
- name: Build
run: |
cmake --build build/
- name: Test
run: |
go install github.com/toml-lang/toml-test/cmd/toml-test@latest
toml-test ./build/tests/toml11_decoder
# skipped tests does not conform the latest commit in toml-lang/toml
toml-test -toml 1.1.0 ./tests/toml11_decoder_v1_1_0 -skip invalid/control/comment-del,invalid/control/comment-lf,invalid/control/comment-us
toml-test ./build/tests/toml11_encoder

0 comments on commit 5dcbec0

Please sign in to comment.