Skip to content

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

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

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

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 -y \
autoconf \
autoconf-archive \
automake \
build-essential \
ninja-build
- name: configure
run: |
cmake --preset linux-ninja-Debug
- name: build
run: |
cmake --build --preset linux-ninja-Debug
- name: test
run: |
./build/test/component-model-test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}