Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Fix integration-tests workflow (#27)
Browse files Browse the repository at this point in the history
## Purpose

Fix issues in integration tests workflow + make it run in PR's

## Checklist

- [x] My code follows the style of this project.
- [x] The code compiles without warnings.
- [x] I have performed a self-review of the changes.
- [x] I have documented my code, in particular the intent of the
      hard-to-understand areas.
- [ ] (If necessary) I have updated the CHANGELOG.
  • Loading branch information
shjortConcordium authored Dec 4, 2023
2 parents 5eb10c7 + ece7a8d commit e0e86c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 74 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
# Trigger the workflow on pushes to the main and feature branches.
push:
branches: [main, feature/**]
pull_request:
branches: [main, feature/**]

# Allows us to run the workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -26,8 +28,9 @@ jobs:
flutter-version: ${{ env.flutter_version }}
channel: 'stable'
cache: true
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'

# Run integration test with android emulator
Expand Down Expand Up @@ -68,4 +71,4 @@ jobs:
channel: 'stable'
cache: true
- uses: nanasess/setup-chromedriver@v2
- run: chromedriver --port=4444 & ./integration_test/run_tests.sh
- run: chromedriver --port=4444 & ./integration_test/run_web_tests.sh
72 changes: 0 additions & 72 deletions .github/workflows/integration.tests.yml

This file was deleted.

0 comments on commit e0e86c2

Please sign in to comment.