Skip to content

Fix comment typo

Fix comment typo #33

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
FORCE_JSONRS_BUILD: true
CARGO_INCREMENTAL: 0
permissions:
contents: read
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: '1.14.3'
otp-version: '25.x'
- name: Restore Elixir dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Restore Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test