Skip to content

Commit cdab4d2

Browse files
Improve category upsert and add test (#352)
* Doe some updating and add test * refrhes_from_db only path * Add transaction that rollsback on error * update versions
1 parent 0105107 commit cdab4d2

File tree

3 files changed

+608
-13
lines changed

3 files changed

+608
-13
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout the repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
with:
1515
path: ./src
1616
- name: Setup Python 3.11
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: '3.11'
2020
- name: Install all dependencies
2121
run: make install
2222
- name: Run all linting
2323
run: make lint
2424
- name: Upload src dir as artefact
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: src
2828
path: ./src
@@ -38,12 +38,12 @@ jobs:
3838
oscar-version: ["3.2"]
3939
steps:
4040
- name: Download src dir
41-
uses: actions/download-artifact@v2
41+
uses: actions/download-artifact@v4
4242
with:
4343
name: src
4444
path: ./src
4545
- name: Setup Python 3.x
46-
uses: actions/setup-python@v2
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949
- name: Install all dependencies

0 commit comments

Comments
 (0)