starting on syntax sugar for constructors #1382
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
on: | |
label: | |
types: | |
- created | |
push: | |
pull_request: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install LLVM and Clang | |
uses: KyleMayes/install-llvm-action@v1 | |
with: | |
version: "14.0" | |
- name: Build CMake config | |
run: | | |
sh ./build_scripts/release.sh | |
- name: Build/Install Snowball | |
run: | | |
sudo make install | |
- name: Runing unit tests | |
run: | | |
snowball test | |