Now with working tests #233
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: | |
pull_request: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install sass | |
run: | | |
wget -O /tmp/sass.tar.gz https://github.com/sass/dart-sass/releases/download/1.77.8/dart-sass-1.77.8-linux-x64.tar.gz | |
tar -C /tmp -xvf /tmp/sass.tar.gz | |
echo /tmp/dart-sass >> $GITHUB_PATH | |
- name: Install dependencies | |
run: make minimal | |
- name: Run tests | |
run: make test |