Cron CI #10
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
name: Cron CI | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
interop-tests: | |
runs-on: ubuntu-latest | |
name: Interop tests | |
container: | |
image: elixir:1.9 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
working-directory: ./interop | |
- name: Run Cron CI | |
run: make ci-cron |