Skip to content

Commit

Permalink
Attempt to fix Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ipinfo committed Sep 4, 2024
1 parent f143974 commit 2c66085
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: CI

on: [push, pull_request]

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -11,12 +14,12 @@ jobs:
container:
image: erlang:${{ matrix.otp }}-alpine
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Compile
run: rebar3 compile
- name: Tests
run: |
rebar3 xref
rebar3 dialyzer
rebar3 ct
- name: Checkout
uses: actions/checkout@v3
- name: Compile
run: rebar3 compile
- name: Tests
run: |
rebar3 xref
rebar3 dialyzer
rebar3 ct

0 comments on commit 2c66085

Please sign in to comment.