Update LLVM lib/Demangle 0cc19b564dd3a2b7ce51840d6...3a4c7cc56c07b2db #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ninja | |
uses: ashutoshvarma/[email protected] | |
- uses: ilammy/[email protected] | |
- name: CMake | |
run: | | |
cmake -GNinja . | |
- name: Build | |
run: | | |
ninja | |
- name: Test | |
run: | | |
python3 demumble_test.py |