chore: bump actions/checkout from 4.1.1 to 4.1.2 (#54) #116
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
# Copyright (c) 2021 ICHIRO ITS | |
# | |
# Use of this source code is governed by an MIT-style | |
# license that can be found in the LICENSE file or at | |
# https://opensource.org/licenses/MIT. | |
name: Build and Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout this repository | |
uses: actions/[email protected] | |
with: | |
path: musen | |
- name: Install test dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y cppcheck libgtest-dev uncrustify | |
sudo pip install cpplint | |
- name: Create a build directory | |
run: mkdir build | |
- name: Configure CMake | |
working-directory: build | |
run: cmake -DBUILD_TESTING=ON ../musen | |
- name: Build the project | |
working-directory: build | |
run: make -j8 | |
- name: Test the project | |
working-directory: build | |
run: ctest --verbose |