Skip to content

Commit

Permalink
Switch to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasknoepfle committed Mar 22, 2024
1 parent 9a6c606 commit 1ef68b0
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 38 deletions.
37 changes: 0 additions & 37 deletions .circleci/config.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
on: push

jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: '26.1'
elixir-version: '1.14.1'
- run: mix deps.get
- run: mix format --check-formatted
- run: mix test
- run: mix credo --strict
- run: mix docs
demo:
runs-on: ubuntu-latest
name: Demo
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: '26.1'
elixir-version: '1.14.1'
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: nanasess/setup-chromedriver@v2
- run: cd demo && mix deps.get
- run: cd demo && mix format --check-formatted
- run: cd demo/assets && npm install
- run: cd demo && mix test
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elixir 1.14.1
erlang 25.1.2
erlang 26.1.2
nodejs 16.13.0

0 comments on commit 1ef68b0

Please sign in to comment.