Merge pull request #12 from pitabwire/renovate/actions-checkout-4.x #46
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: Test all code changes | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: google/dart:latest | |
steps: | |
- name: Checkout code for testing | |
uses: actions/checkout@v4 | |
- name: Run all tests in project | |
run: dart test test/ |