2022-11-24 21:21:40 +02:00
|
|
|
name: "e2e"
|
2022-09-14 05:59:49 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignode:
|
|
|
|
- "**.md"
|
2022-11-24 21:21:40 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
2022-09-14 05:59:49 +03:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
name: "Run sbt tests"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: fluencelabs/aqua
|
|
|
|
|
|
|
|
- name: Cache Scala
|
|
|
|
uses: coursier/cache-action@v6
|
|
|
|
|
|
|
|
- name: Setup Scala
|
|
|
|
uses: coursier/setup-action@v1
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: sbt test
|
|
|
|
|
2022-11-24 21:21:40 +02:00
|
|
|
aqua:
|
2022-09-14 17:36:16 +03:00
|
|
|
name: "aqua"
|
2022-09-14 05:59:49 +03:00
|
|
|
uses: ./.github/workflows/snapshot.yml
|
2022-12-02 10:15:26 +02:00
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
2022-09-14 05:59:49 +03:00
|
|
|
|
|
|
|
aqua-playground:
|
2022-11-24 21:21:40 +02:00
|
|
|
needs: aqua
|
2022-11-30 15:28:06 +03:00
|
|
|
uses: fluencelabs/aqua-playground/.github/workflows/tests.yml@master
|
2022-09-14 05:59:49 +03:00
|
|
|
with:
|
2022-11-24 21:21:40 +02:00
|
|
|
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"
|
2022-11-17 11:01:08 +02:00
|
|
|
|
|
|
|
registry:
|
2022-11-24 21:21:40 +02:00
|
|
|
needs: aqua
|
2022-11-17 11:01:08 +02:00
|
|
|
uses: fluencelabs/registry/.github/workflows/tests.yml@main
|
|
|
|
with:
|
2022-11-24 21:21:40 +02:00
|
|
|
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"
|