Some checks failed
Gajumaru Serialization Tests / tests (push) Failing after 46m1s
22 lines
629 B
YAML
22 lines
629 B
YAML
name: Gajumaru Serialization Tests
|
|
run-name: ${{ gitea.actor }} testing Gajumaru Serialization
|
|
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: linux_amd64
|
|
steps:
|
|
- name: stoopud
|
|
run: env
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: eunit
|
|
run: |
|
|
. /home/act_runner/.erts/27.2.1/activate
|
|
export PATH="$HOME/bin:$PATH"
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
|
env
|
|
./rebar3 eunit
|