-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #460 from Argonus/github-actions-checks-cdn
GitHub actions checks cdn
- Loading branch information
Showing
15 changed files
with
500 additions
and
294 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
name: CI Checks | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
dependencies: | ||
name: check | setup dependencies | ||
runs-on: ubuntu-20.04 | ||
env: | ||
MIX_ENV: dev | ||
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | ||
strategy: | ||
matrix: | ||
elixir: ['1.12'] | ||
otp: ['24.3'] | ||
|
||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout Github repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup elixir & erlang enviroment | ||
uses: actions/setup-elixir@v1 | ||
with: | ||
elixir-version: ${{matrix.elixir}} # Define the elixir version [required] | ||
otp-version: ${{matrix.otp}} # Define the OTP version [required] | ||
experimental-otp: true # More info https://github.com/actions/setup-elixir/issues/31 | ||
|
||
- name: Retrieve Cached Dependencies | ||
uses: actions/cache@v2 | ||
id: mix-cache | ||
with: | ||
path: | | ||
deps | ||
_build | ||
priv/plts | ||
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | ||
|
||
- name: Install Dependencies | ||
if: steps.mix-cache.outputs.cache-hit != 'true' | ||
run: | | ||
mkdir -p priv/plts | ||
mix local.rebar --force | ||
mix local.hex --force | ||
mix deps.get | ||
mix deps.compile | ||
mix dialyzer --plt | ||
static_code_analysis: | ||
name: Static Code Analysis | ||
runs-on: ubuntu-20.04 | ||
needs: [dependencies] | ||
env: | ||
MIX_ENV: dev | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
elixir: ['1.12'] | ||
otp: ['24.3'] | ||
|
||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup elixir & erlang enviroment | ||
uses: actions/setup-elixir@v1 | ||
with: | ||
elixir-version: ${{matrix.elixir}} # Define the elixir version [required] | ||
otp-version: ${{matrix.otp}} # Define the OTP version [required] | ||
experimental-otp: true # More info https://github.com/actions/setup-elixir/issues/31 | ||
|
||
- name: Retrieve Cached Dependencies | ||
uses: actions/cache@v2 | ||
id: mix-cache | ||
with: | ||
path: | | ||
deps | ||
_build | ||
priv/plts | ||
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | ||
|
||
- name: Compile | ||
run: mix compile --force | ||
|
||
- name: Check Code Format | ||
run: mix format --check-formatted | ||
|
||
- name: Run Credo | ||
run: mix credo | ||
|
||
- name: Run Dialyzer | ||
run: mix dialyzer --no-check |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
name: CI Tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
setup: | ||
name: test / setup | ||
runs-on: ubuntu-20.04 | ||
env: | ||
MIX_ENV: test | ||
strategy: | ||
matrix: | ||
pair: | ||
- elixir: 1.13 | ||
otp: 24.3 | ||
- elixir: 1.11 | ||
otp: 21.3 | ||
- elixir: 1.6 | ||
otp: 20.3 | ||
|
||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Checkout Github repo | ||
uses: actions/checkout@v2 | ||
- name: Setup elixir & erlang enviroment | ||
uses: actions/setup-elixir@v1 | ||
with: | ||
elixir-version: ${{matrix.pair.elixir}} # Define the elixir version [required] | ||
otp-version: ${{matrix.pair.otp}} # Define the OTP version [required] | ||
experimental-otp: true # More info https://github.com/actions/setup-elixir/issues/31 | ||
|
||
- name: Retrieve Mix Dependencies Cache | ||
uses: actions/cache@v2 | ||
id: mix-cache # id to use in retrieve action | ||
with: | ||
path: deps | ||
key: ${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | ||
|
||
- name: Retrieve Mix Dependencies Compilation Cache | ||
uses: actions/cache@v2 | ||
id: mix-deps-compile-cache # id to use in retrieve action | ||
with: | ||
path: _build | ||
key: ${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-mix-deps-compile-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | ||
- name: Install Mix Dependencies | ||
if: steps.mix-cache.outputs.cache-hit != 'true' | ||
run: | | ||
mix local.rebar --force | ||
mix local.hex --force | ||
mix deps.get | ||
- name: Compile Mix Dependencies | ||
if: steps.mix-deps-compile-cache.outputs.cache-hit != 'true' | ||
run: mix deps.compile | ||
|
||
test: | ||
name: runner / Test | ||
needs: [setup] | ||
|
||
runs-on: ubuntu-20.04 | ||
env: | ||
MIX_ENV: test | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
pair: | ||
- elixir: 1.13 | ||
otp: 24.3 | ||
- elixir: 1.11 | ||
otp: 21.3 | ||
- elixir: 1.6 | ||
otp: 20.3 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup elixir & erlang enviroment | ||
uses: actions/setup-elixir@v1 | ||
with: | ||
elixir-version: ${{matrix.pair.elixir}} # Define the elixir version [required] | ||
otp-version: ${{matrix.pair.otp}} # Define the OTP version [required] | ||
experimental-otp: true # More info https://github.com/actions/setup-elixir/issues/31 | ||
|
||
- name: Retrieve Mix Dependencies Cache | ||
uses: actions/cache@v2 | ||
id: mix-cache # id to use in retrieve action | ||
with: | ||
path: deps | ||
key: ${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | ||
|
||
- name: Retrieve Mix Dependencies Compilation Cache | ||
uses: actions/cache@v2 | ||
id: mix-deps-compile-cache # id to use in retrieve action | ||
with: | ||
path: _build | ||
key: ${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-mix-deps-compile-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | ||
|
||
- name: Docker-compose up | ||
run: ./scripts/docker_up.sh | ||
- name: Docker ps | ||
run: docker ps -a | ||
- name: Run Tests | ||
run: ./scripts/ci_tests.sh |
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.