Skip to content

Add priv/plts to .gitignore and update bunch #3

Add priv/plts to .gitignore and update bunch

Add priv/plts to .gitignore and update bunch #3

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
workflow_dispatch:
jobs:
build_test:
uses: membraneframework/membrane_actions/.github/workflows/build-test.yml@main
lint:
uses: membraneframework/membrane_actions/.github/workflows/lint.yml@main
test:
uses: membraneframework/membrane_actions/.github/workflows/test.yml@main
windows_test:
runs-on: windows-latest
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "27"
elixir-version: "1.18"
- name: Get dependencies
run: mix local.hex --force && mix deps.get
- name: Run tests
run: mix test --warnings-as-errors