Remove this check from workflow. #5
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Checkout rgbds | |
uses: actions/checkout@master | |
with: | |
path: rgbds | |
ref: v0.8.0 | |
repository: gbdev/rgbds | |
- name: Install rgbds | |
working-directory: rgbds | |
run: | | |
sudo make install | |
- name: Remove rgbds | |
run: | | |
rm -rf rgbds | |
- name: Make | |
run: | | |
make -j$(nproc) | |
- name: Install mono | |
run: | | |
sudo apt install ca-certificates gnupg | |
sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list | |
sudo apt update | |
- name: Validate text | |
run: | | |
echo "$PWD" | |
mono Validator.exe | |