2019-12-08 04:07:49 +01:00
|
|
|
name: Philomena Build
|
|
|
|
|
2020-11-26 21:23:07 +01:00
|
|
|
on: [push, pull_request]
|
2019-12-08 04:07:49 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-10-26 22:01:29 +01:00
|
|
|
- uses: actions/checkout@v2
|
2020-12-01 03:40:30 +01:00
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
_build
|
|
|
|
deps
|
|
|
|
key: ${{ runner.os }}-build-deps-${{ hashFiles('mix.lock') }}
|
|
|
|
|
|
|
|
- run: docker-compose pull
|
|
|
|
|
|
|
|
- uses: satackey/action-docker-layer-caching@v0.0.8
|
|
|
|
continue-on-error: true
|
|
|
|
|
2020-10-26 22:01:29 +01:00
|
|
|
- name: Build and test
|
|
|
|
run: docker-compose run app run-test
|
2020-12-01 03:40:30 +01:00
|
|
|
|
|
|
|
- name: Fix permissions
|
|
|
|
run: |
|
|
|
|
sudo chown -R $(whoami):$(id -ng) deps
|
|
|
|
sudo chown -R $(whoami):$(id -ng) _build
|