Skip to content

⬆️ Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #148

⬆️ Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

⬆️ Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #148

Workflow file for this run

name: Build
on:
push:
paths:
- '**.dart'
- '**.yaml'
- '**.yml'
branches:
- main
tags-ignore:
- '**'
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- uses: dart-lang/setup-dart@v1
- name: Dart SDK
run: dart --version
- uses: actions/checkout@v2
- name: Install dependencies
run: dart pub get
- name: Code Formatting
run: dart format --set-exit-if-changed .
- name: Build & Install Locally
run: dart pub global activate --source path .
- name: Check Publish Warnings
run: dart pub publish --dry-run