ci: limiting actions to 15 minutes
This commit is contained in:
parent
cf0b53e52d
commit
685b316ce9
|
@ -9,6 +9,7 @@ jobs:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: golang:1.16.6
|
container: golang:1.16.6
|
||||||
|
timeout-minutes: 15
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:13-alpine
|
image: postgres:13-alpine
|
||||||
|
|
|
@ -8,7 +8,7 @@ jobs:
|
||||||
client-build:
|
client-build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 15
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: ./client
|
working-directory: ./client
|
||||||
|
|
|
@ -8,7 +8,7 @@ jobs:
|
||||||
client-build:
|
client-build:
|
||||||
name: Client
|
name: Client
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 15
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: ./client
|
working-directory: ./client
|
||||||
|
@ -63,6 +63,7 @@ jobs:
|
||||||
name: API
|
name: API
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: golang:1.16.6
|
container: golang:1.16.6
|
||||||
|
timeout-minutes: 15
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:13-alpine
|
image: postgres:13-alpine
|
||||||
|
|
25
README.md
25
README.md
|
@ -54,25 +54,26 @@ See [CONTRIBUTING](./CONTRIBUTING.md) or README files on each project directory
|
||||||
* [Ronny Gunawan](https://github.com/ronnygunawan) for the caching concept & ideas
|
* [Ronny Gunawan](https://github.com/ronnygunawan) for the caching concept & ideas
|
||||||
* [artileda](https://github.com/artileda) for the jokes submission
|
* [artileda](https://github.com/artileda) for the jokes submission
|
||||||
* [elianiva](https://github.com/elianiva) for solving my SvelteKit problems
|
* [elianiva](https://github.com/elianiva) for solving my SvelteKit problems
|
||||||
|
* [kokizzu](https://github.com/kokizzu) for the dependency injection concept & ideas
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Jokes Bapak2 API is licensed under [GNU GENERAL PUBLIC LICENSE v3 license](./LICENSE)
|
Jokes Bapak2 API is licensed under [GNU GENERAL PUBLIC LICENSE v3 license](./LICENSE)
|
||||||
|
|
||||||
```
|
```
|
||||||
Jokes Bapak2 API is a free-to-use image API of Indonesian dad jokes.
|
Jokes Bapak2 API is a free-to-use image API of Indonesian dad jokes.
|
||||||
Copyright (C) 2021-present Jokes Bapak2 Contributors
|
Copyright (C) 2021-present Jokes Bapak2 Contributors
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
```
|
```
|
Loading…
Reference in New Issue