CI #674
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: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
check_format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: shards install --ignore-crystal-version | |
- name: Check format | |
run: crystal tool format --check | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
crystal: [latest, nightly] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt-get install autoconf automake autopoint libtool | |
- name: Build Hunspell from sources | |
run: | | |
HUNSPELL_VERSION="1.7.2" | |
wget "https://github.com/hunspell/hunspell/releases/download/v${HUNSPELL_VERSION}/hunspell-${HUNSPELL_VERSION}.tar.gz" | |
tar xzvf "hunspell-${HUNSPELL_VERSION}.tar.gz" | |
cd "hunspell-${HUNSPELL_VERSION}" | |
autoreconf -vfi | |
./configure | |
make | |
sudo make install | |
sudo ldconfig | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
with: | |
crystal: ${{ matrix.crystal }} | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: shards install --ignore-crystal-version | |
- name: Run tests | |
run: crystal spec |