Skip to content

Commit

Permalink
Adds skip clause to specs workflow (#17)
Browse files Browse the repository at this point in the history
* modifies worflow to add skip condition [skip specs]
  • Loading branch information
CharlieIGG authored Dec 28, 2019
1 parent b739dff commit bfc441a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml → .github/workflows/specs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Tests
name: specs
on: push
jobs:
test:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[skip specs]')"
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: BUILD TEST
run: docker-compose build test
- name: MIGRATE TEST
Expand Down
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# STARTUPAPP

![](https://github.com/CharlieIGG/startupapp/workflows/Tests/badge.svg)
![](https://github.com/CharlieIGG/startupapp/workflows/specs/badge.svg)

Startup Evaluation App. For Startup Incubators, Accelerators, Hackathons, and other kinds of public and private scenarios for evaluating startups.

Expand All @@ -23,8 +23,8 @@ Startup Evaluation App. For Startup Incubators, Accelerators, Hackathons, and ot

### Environment URLS

* **Production** - TBD
* **Staging** - TBD
- **Production** - TBD
- **Staging** - TBD

### Da team

Expand All @@ -36,10 +36,10 @@ Startup Evaluation App. For Startup Incubators, Accelerators, Hackathons, and ot

You should ask for access to this tools if you don't have it already:

* [Github repo](https://github.com/charlieigg/STARTUPAPP)
* [Pivotal tracker project](https://www.pivotaltracker.com/)
* [Client Slack](https://change-me.slack.com/)
* [Heroku](https://heroku.com)
- [Github repo](https://github.com/charlieigg/STARTUPAPP)
- [Pivotal tracker project](https://www.pivotaltracker.com/)
- [Client Slack](https://change-me.slack.com/)
- [Heroku](https://heroku.com)

## Development

Expand All @@ -62,6 +62,7 @@ After installing please you can follow this simple steps:
$ git clone [email protected]:charlieigg/startupapp.git

```

2. Copy the `example.env` file to `.env` in the project's source directory.

```bash
Expand Down Expand Up @@ -112,7 +113,6 @@ $ docker-compose up

That command will lift every service STARTUPAPP needs, such as the `rails server`, `postgres`, and `redis`.


It may take a while before you see anything, you can follow the logs of the containers with:

```
Expand Down Expand Up @@ -229,9 +229,10 @@ codeclimate engine:install
3: Finally, run codeclimate to analyze the code:
codeclimate analyze
```
## Deploying
If you have previously run the `./bin/setup` script,
you can deploy to staging and production with:
% ./bin/deploy staging
% ./bin/deploy production
% ./bin/deploy staging
% ./bin/deploy production

0 comments on commit bfc441a

Please sign in to comment.