Skip to content

docs: update changelog #77

docs: update changelog

docs: update changelog #77

Workflow file for this run

---
name: CI
on:
- push
- pull_request
jobs:
test_linux:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Setup Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: 1.8.2
- name: Install dependencies
run: make deps
- name: Run tests
run: make spec
- name: Run static code analysis
run: make ameba
test_macos:
runs-on: macos-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Setup Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: 1.8.2
- name: Install dependencies
run: make deps
- name: Run tests
run: make spec
- name: Run static code analysis
run: make ameba