Skip to content

Commit

Permalink
Merge pull request #29 from Globbi/update_workflow_container: fix git…
Browse files Browse the repository at this point in the history
…hub actions

update dart.yml
  • Loading branch information
Stevertus authored Jun 27, 2023
2 parents 0e373d1 + e01a6c0 commit bf9dc55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
build:
# use ubuntu's latest OS
runs-on: ubuntu-latest
# use the google/dart container (this makes `dart` available to use)
# use the _/dart container for version 3+ (this makes `dart` available to use)
container:
image: google/dart:latest
image: dart:latest

# checkout the code, run pub get and finally run tests
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart run test
run: dart run test

0 comments on commit bf9dc55

Please sign in to comment.