Skip to content

Commit

Permalink
feat: test prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
apodlaski committed Oct 2, 2024
1 parent 875cd75 commit 6bb0c8b
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,27 +56,23 @@ jobs:
otp-version: ${{ inputs.otp-version }}
elixir-code-path: ${{ inputs.elixir-code-path }}

prepare:
name: Prepare repo and env
uses: ./actions/prepare
with:
mix-env: ${{ inputs.mix-env }}
cache_paths: ${{ inputs.cache_paths }}
elixir-version: ${{ inputs.elixir-version }}
otp-version: ${{ inputs.otp-version }}
token: ${{ secrets.GH_TOKEN != '' && secrets.GH_TOKEN || github.token }}
elixir-code-path: ${{ inputs.elixir-code-path }}

code_checks:
name: Run code checks
needs: build
runs-on: ubuntu-20.04

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Prepare repo and env
uses: ./actions/prepare/action.yml
with:
mix-env: ${{ inputs.mix-env }}
cache_paths: ${{ inputs.cache_paths }}
elixir-version: ${{ inputs.elixir-version }}
otp-version: ${{ inputs.otp-version }}
token: ${{ secrets.GH_TOKEN != '' && secrets.GH_TOKEN || github.token }}
elixir-code-path: ${{ inputs.elixir-code-path }}


- name: Install protoc
run: sudo apt-get install protobuf-compiler

Expand Down

0 comments on commit 6bb0c8b

Please sign in to comment.