EdgeQL to Elixir generation #612
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: Tests | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
tests: | |
name: Run tests (OS ${{ matrix.os-version }} / OTP ${{ matrix.otp-version }} / Elixir ${{ matrix.elixir-version }} / EdgeDB ${{ matrix.edgedb-version }}) | |
strategy: | |
matrix: | |
os-version: | |
- "ubuntu-22.04" | |
otp-version: | |
- "24.3" | |
- "26.0" | |
elixir-version: | |
- "1.12" | |
- "1.13" | |
- "1.14" | |
- "1.15" | |
edgedb-version: | |
- "1.0" | |
- "2.0" | |
- "3.0" | |
exclude: | |
- elixir-version: "1.12" | |
otp-version: "26.0" | |
- elixir-version: "1.13" | |
otp-version: "26.0" | |
- elixir-version: "1.14" | |
otp-version: "24.3" | |
- elixir-version: "1.15" | |
otp-version: "24.3" | |
runs-on: ${{ matrix.os-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Remove migrations for EdgeDB versions greater then current major version (${{ matrix.edgedb-version }}) | |
env: | |
EDGEDB_VERSION: ${{ matrix.edgedb-version }} | |
run: | | |
EDGEDB_VERSION=${EDGEDB_VERSION%%.*} | |
for migration_file in `ls test/support/schema/migrations/` | |
do | |
migration_number=${migration_file%.*} | |
if test ${migration_number} -gt ${EDGEDB_VERSION} | |
then | |
rm "test/support/schema/migrations/${migration_file}" | |
fi | |
done | |
echo "EDGEDB_VERSION=${EDGEDB_VERSION}" >> ${GITHUB_ENV} | |
- uses: edgedb/[email protected] | |
with: | |
server-version: ${{ matrix.edgedb-version }} | |
instance-name: edgedb_elixir | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp-version }} | |
elixir-version: ${{ matrix.elixir-version }} | |
- name: Set up cache | |
uses: actions/[email protected] | |
id: cache | |
with: | |
path: | | |
deps | |
_build | |
priv/plts | |
key: tests-${{ matrix.os-version }}-${{ matrix.otp-version }}-${{ matrix.elixir-version }}-${{ hashFiles('mix.lock') }} | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: mix deps.get --only test | |
- name: Create requried users | |
run: mix edgedb.roles.setup | |
- name: Run tests | |
run: mix coveralls | |
result: | |
name: Tests conclusion | |
needs: tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: "echo 'Completed!'" |