Updated libxutils #20
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: SMake Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install SMake | |
run: | | |
./build.sh --install | |
make clean | |
- name: Re-install project using smake | |
run: | | |
smake && make | |
sudo make install | |
- name: Generate new project and run | |
run: | | |
mkdir test | |
cd test | |
smake -I | |
make | |
./test |