-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setup a workflow to run on push #5
Open
zacck-zz
wants to merge
24
commits into
master
Choose a base branch
from
feature/add-ci
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
fabc8f6
setup a workflow to run on push
zacck d9c9010
Adding compile instructions on workflow
omanimo 1efb35f
Adding compile instructions on workflow
omanimo 61776f4
Adding compile instructions on workflow
omanimo 4c59fa2
Compile instructions on workflow
omanimo 6052f7a
Compile instructions on workflow
omanimo 570fbfe
Compile instructions on workflow
omanimo 7447020
Compile instructions on workflow
omanimo 1390ea4
adding runners for mac-os
omanimo 13562e4
adding runners for mac-os and ubuntu
omanimo f4cf43e
adding runners for mac-os and ubuntu
omanimo 96dfe44
adding runners for mac-os and ubuntu
omanimo ee95df8
adding runners for mac-os and ubuntu
omanimo d94d947
Updating parser to regex
Pancakem da97c53
adding runners for mac-os and ubuntu
omanimo e2728cd
Remove leading and trailing dots
Pancakem af79153
adding runners for macos and ubuntu
omanimo 0d165ab
adding runners for macos and ubuntu
omanimo 51efbe1
Add tests
Pancakem 1fa2620
Merge branch 'feature/test' into feature/add-ci
Pancakem e047b32
tests on the parser
omanimo f87c38a
Merge branch 'feature/add-ci' of https://github.com/LittleKidogo/inte…
omanimo c773eae
tests on the parser
omanimo db5b2db
Remove versioning on the dependencies
Pancakem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Little Kidogo Interruption Parser | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.5] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set Up Python ${{matrix.python-version}} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Dependencies | ||
run : | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
|
||
compile: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Compile code | ||
run: | | ||
pip install PyInstaller | ||
pyinstaller --onefile manage.py | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@omanimo you want to use a matrix here, I run macos, marvin runs fedora and the server runs alpine ensure it compiles on all of those please
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noted @zacck. Let me get on it.