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

ci: send releases to pub.dev #11

ci: send releases to pub.dev

ci: send releases to pub.dev #11

Workflow file for this run

name: bloc_lint
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Dart
uses: dart-lang/setup-dart@v1
with:
sdk: '3.5.1'
- name: Get dependencies
run: dart pub get
- name: Test lint rules
run: cd example && dart run custom_lint && cd ..