Skip to content

Commit

Permalink
Fix: fixed yaml template string
Browse files Browse the repository at this point in the history
  • Loading branch information
miltlima committed Jul 25, 2023
1 parent b530fe4 commit bd1ab46
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
26 changes: 13 additions & 13 deletions pkg/stacks/nodejs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ name: Node.js CI
on:
push:
branches:
- main
- main
pull_request:
branches:
- main
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test
`
24 changes: 12 additions & 12 deletions pkg/stacks/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ name: Python CI
on:
push:
branches:
- main
- main
pull_request:
branches:
- main
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Tests
run: pytest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Tests
run: pytest
`

0 comments on commit bd1ab46

Please sign in to comment.