Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ jobs:

build:
strategy:
fail-fast: false
matrix:
dart_version: [ 2.18,2.19,3.0,3.1,3.2,3.3 ]
dart_version: [ "3.8", "3.9", "stable" ]
runs-on: ubuntu-latest
container:
image: dart:${{ matrix.dart_version }}
steps:
- name: Checkout code for testing
uses: actions/checkout@v5
- name: Get dependencies
run: dart pub get
- name: Run all tests in project
run: dart test test/
7 changes: 3 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ description: |
Xid is a globally unique id generator. Xids are small, fast to generate, sortable,
compact URL-safe string with no configuration or central generator server.

version: 1.2.1
version: 1.2.2
repository: https://github.com/pitabwire/xid
environment:
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.8.0 <4.0.0'

dev_dependencies:
flutter_lints: ^6.0.0
test: ^1.16.0

test: ^1.25.0