Skip to content

Add fishjam_protos library #24

Add fishjam_protos library

Add fishjam_protos library #24

Workflow file for this run

name: CI
on: push
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
name: Protobuf lint
container:
image: bufbuild/buf:1.23.1
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: lint
run: buf lint
- name: format
run: buf format --exit-code
fishjam_protos_lint:
runs-on: ubuntu-latest
name: CI elixir lint
strategy:
matrix:
otp: ['27']
elixir: ['1.17']
steps:
- name: Install dependencies
run: mix deps.get
- name: Compile without warnings
id: compile
run: mix compile --warnings-as-errors
- name: Check formatting
if: ${{ !cancelled() && steps.compile.outcome == 'success' }}
run: mix format --check-formatted