Skip to content

fix: String lower/lift now working for latin1+utf16 #38

fix: String lower/lift now working for latin1+utf16

fix: String lower/lift now working for latin1+utf16 #38

Workflow file for this run

name: Ubuntu
on:
push:
branches:
- trunk
- main
pull_request:
branches:
- trunk
- main
env:
CTEST_OUTPUT_ON_FAILURE: 1
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/cache@v3
with:
path: "build/vcpkg_installed/**/*"
key: ${{ github.workflow }}-vcpkg_installed }}
- name: install dependencies
run: |
sudo apt-get install ninja-build autoconf
- name: configure
run: |
cmake --preset linux-ninja-Debug
- name: build
run: |
cmake --build --preset linux-ninja-Debug
- name: test
run: |
ctest --test-dir ./build/test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}