Add codeowners file (#16) #31
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: Elixir CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
ci: | |
name: Elixir CI | |
runs-on: ubuntu-latest | |
env: | |
MIX_ENV: test | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Setup Elixir Host SDK | |
uses: erlef/setup-beam@v1 | |
with: | |
experimental-otp: true | |
otp-version: '25.0.4' | |
elixir-version: '1.14.0' | |
- name: Test Elixir Host SDK | |
run: | | |
LD_LIBRARY_PATH=/usr/local/lib make test | |