Skip to content

Commit

Permalink
Revamp CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas committed Aug 1, 2024
1 parent d07454b commit b078f29
Show file tree
Hide file tree
Showing 4 changed files with 180 additions and 169 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: poetry
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
Expand All @@ -35,6 +35,6 @@ jobs:

- run: ./scripts/ci.sh

- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4

- run: poetry build
Loading

0 comments on commit b078f29

Please sign in to comment.