Skip to content

Commit

Permalink
Resolved merging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-headspace committed Feb 18, 2020
2 parents 906b321 + 9e328df commit bc9be35
Show file tree
Hide file tree
Showing 98 changed files with 712 additions and 318 deletions.
Binary file added .DS_Store
Binary file not shown.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: push
name: Test, Build and Release apk
jobs:
build:
name: Build APK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.12.x'
channel: 'stable'
- run: flutter pub get
- run: flutter test
- run: flutter build apk --debug --split-per-abi
- name: Create a Release APK
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/debug/*.apk"
token: ${{ secrets.TOKEN }}
10 changes: 10 additions & 0 deletions .idea/eightQueens.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/libraries/Dart_Packages.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/libraries/Flutter_Plugins.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

318 changes: 318 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

41 changes: 10 additions & 31 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,16 @@
## Welcome to GitHub Pages
# eight_queens

You can use the [editor on GitHub](https://github.com/a01334390/eightQueens/edit/master/README.md) to maintain and preview the content for your website in Markdown files.
Eight Queens Simple App

Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files.
## Getting Started

### Markdown
This project is a starting point for a Flutter application.

Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
A few resources to get you started if this is your first Flutter project:

```markdown
Syntax highlighted code block
- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)

# Header 1
## Header 2
### Header 3

- Bulleted
- List

1. Numbered
2. List

**Bold** and _Italic_ and `Code` text

[Link](url) and ![Image](src)
```

For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/).

### Jekyll Themes

Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/a01334390/eightQueens/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file.

### Support or Contact

Having trouble with Pages? Check out our [documentation](https://help.github.com/categories/github-pages-basics/) or [contact support](https://github.com/contact) and we’ll help you sort it out.
For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions eight_queens/.flutter-plugins
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# This is a generated file; do not edit or check into version control.
shared_preferences=/Users/luna/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.6+1/
shared_preferences_macos=/Users/luna/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+5/
shared_preferences_web=/Users/luna/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+3/
1 change: 1 addition & 0 deletions eight_queens/.flutter-plugins-dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"shared_preferences","path":"/Users/luna/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.6+1/","dependencies":[]}],"android":[{"name":"shared_preferences","path":"/Users/luna/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.6+1/","dependencies":[]}],"macos":[{"name":"shared_preferences_macos","path":"/Users/luna/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+5/","dependencies":[]}],"linux":[],"windows":[],"web":[{"name":"shared_preferences_web","path":"/Users/luna/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+3/","dependencies":[]}]},"dependencyGraph":[{"name":"shared_preferences","dependencies":["shared_preferences_macos","shared_preferences_web"]},{"name":"shared_preferences_macos","dependencies":[]},{"name":"shared_preferences_web","dependencies":[]}],"date_created":"2020-02-17 00:14:59.414742","version":"1.14.6"}
22 changes: 0 additions & 22 deletions eight_queens/.github/workflows/main.yml

This file was deleted.

Loading

0 comments on commit bc9be35

Please sign in to comment.