Skip to content

Commit

Permalink
chore: Refactoring workflows. #344
Browse files Browse the repository at this point in the history
  • Loading branch information
LuchoTurtle committed Oct 18, 2023
1 parent cf9e1f9 commit 81e57d5
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 80 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Build & Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3

# Installing Flutter because it's easier to generate .lcov files for test coverage
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'

- name: Install dependencies
run: flutter pub get

- name: Flutter analyze
run: flutter analyze

# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run tests
run: flutter test --coverage

- uses: codecov/codecov-action@v3
with:
files: coverage/lcov.info
verbose: true # optional (default = false)


# Continuous Deployment to Fly.io
# https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
# flutter_deploy:
# name: Deploy Flutter app
# runs-on: ubuntu-latest
#
# needs: [build]
# # https://stackoverflow.com/questions/58139406/only-run-job-on-specific-branch-with-github-actions
# if: github.ref == 'refs/heads/main'
# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
# steps:
# - uses: actions/checkout@v3
#
# - name: Install Flutter
# uses: subosito/flutter-action@v2
# with:
# channel: 'stable'
#
# # Your project will need to have tests in test/ and a dependency on
# # package:test for this step to succeed. Note that Flutter projects will
# # want to change this to 'flutter test'.
# - name: Check build
# run: flutter analyze
#
# - name: Create release build
# # github.com/dwyl/app/issues/315#issuecomment-1443747737
# run: flutter build web --release --web-renderer html
#
#
# # See https://github.com/dwyl/app/issues/326.
# # This will fetch files concurrently needed for the app and not wait for `flutter.js` to load
# - name: Run post-build script to download files concurrently
# run: |
# chmod +x ./build_tools/patch_web.sh
# sh ./build_tools/patch_web.sh --ignore-whitespace
#
# - uses: superfly/[email protected]
# with:
# args: "deploy"
79 changes: 0 additions & 79 deletions .github/workflows/ci.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to Github Pages
name: Deploy Web (GitHub Pages)
on:
push:
branches: [ main ]
Expand Down

0 comments on commit 81e57d5

Please sign in to comment.