Skip to content

Commit

Permalink
containers
Browse files Browse the repository at this point in the history
  • Loading branch information
sparlor committed Sep 14, 2022
1 parent 99a576f commit 2549361
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ jobs:
- 5432:5432
steps:
- name: POST product
- run: curl --location --request POST 'localhost:8000/api/' --form 'title="Apple"' --form 'description="fruit"' --form 'price="$0.99"'
run: curl --location --request POST 'localhost:8000/api/' --form 'title="Apple"' --form 'description="fruit"' --form 'price="$0.99"'

- name: GET product
run: curl --location --request GET 'localhost:8000/api/'

# container:
# image: node:18-alpine3.15
# ports:
Expand Down

0 comments on commit 2549361

Please sign in to comment.