Skip to content

Commit

Permalink
feat(build): #30 update makes
Browse files Browse the repository at this point in the history
- Update makes to latest version
- Update some jobs to pass

Signed-off-by: Daniel Salazar <podany270895@gmail.com>
  • Loading branch information
dsalaza4 committed Jan 20, 2023
1 parent 070d809 commit c2dd72a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .lint-markdown/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
rule 'MD004'
rule 'MD005'
rule 'MD006'
rule 'MD007', :indent => 4
rule 'MD007', :indent => 2
rule 'MD009'
rule 'MD010'
rule 'MD011'
Expand Down
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,25 +85,26 @@ We will achieve this by implementing

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

# Contents

- [Prerequisites](#prerequisites)
- [Concepts](#concepts)
- [Software](#software)
- [Concepts](#concepts)
- [Software](#software)
- [Backbone: Nix and Nixpkgs](#backbone-nix-and-nixpkgs)
- [Running any Makes job](#running-any-makes-job)
- [Running Makes on containers](#running-makes-on-containers)
- [The makes.nix file](#the-makesnix-file)
- [Example builtin](#example-builtin)
- [Working with a Nixpkgs version](#working-with-a-nixpkgs-version)
- [Using imports](#using-imports)
- [Configuring the cache](#configuring-the-cache)
- [Example builtin](#example-builtin)
- [Working with a Nixpkgs version](#working-with-a-nixpkgs-version)
- [Using imports](#using-imports)
- [Configuring the cache](#configuring-the-cache)
- [The example API](#the-example-api)
- [API Source Code](#api-source-code)
- [API Environment](#api-environment)
- [API makes.nix](#api-makesnix)
- [API main.nix](#api-mainnix)
- [API Deployments](#api-deployments)
- [API Source Code](#api-source-code)
- [API Environment](#api-environment)
- [API makes.nix](#api-makesnix)
- [API main.nix](#api-mainnix)
- [API Deployments](#api-deployments)
- [References](#references)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->
Expand Down
2 changes: 1 addition & 1 deletion api/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
app = FastAPI()


class Item(BaseModel):
class Item(BaseModel): # pylint: disable=too-few-public-methods
name: str
price: float
is_offer: Union[bool, None] = None
Expand Down
2 changes: 1 addition & 1 deletion makes.lock.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
makesSrc = builtins.fetchGit {
url = "https://github.com/fluidattacks/makes";
ref = "refs/tags/22.08";
ref = "refs/tags/22.11";
};
}

0 comments on commit c2dd72a

Please sign in to comment.