Added patch to don't record a dependency in the favourites #431
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: Building test | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: crystallang/crystal | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generating ism tree | |
run: mkdir /etc/ism && mkdir /var/ism | |
- name: Building ism | |
run: crystal build Main.cr -o ism | |
- name: Run test | |
run: ./ism |