Prevent unlocked dependencies in CI (#126) #130
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
on: | |
push: | |
branches: | |
- "main" | |
name: "Main Branch" | |
# Secrets: | |
# * CACHE_VERSION - Set to `date +%s`, set new when the cache should be busted | |
jobs: | |
test: | |
name: "Test" | |
uses: ./.github/workflows/part_test.yml | |
with: | |
elixirVersion: "1.15.7" | |
otpVersion: "26.1" | |
secrets: | |
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}" | |
docs: | |
name: "Docs" | |
uses: ./.github/workflows/part_docs.yml | |
with: | |
elixirVersion: "1.15.7" | |
otpVersion: "26.1" | |
secrets: | |
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}" |