Add ability to query for resources #169
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: ci | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- 'feature/**' | |
- 'hotfix/**' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: 1.15.7-otp-26 # Define the elixir version [required] | |
otp-version: '26' # Define the OTP version [required] | |
- name: Install Dependencies | |
run: mix deps.get | |
- name: Run Tests | |
run: mix test |