Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Assorted cleanups #211

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
- pull_request
jobs:
ruff:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -13,7 +13,7 @@ jobs:
- run: python -m pip install ruff
- run: ruff check beanquery/
coverage:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -38,7 +38,7 @@ jobs:
python -m coverage erase
done
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: release
on:
push:
tags:
- 'v[0-9]*'

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -13,7 +13,6 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: dist/*

upload:
needs: build
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- '3.13'
beancount:
- '~= 2.3.6'
- '~= 3.0.0'
- '@ git+https://github.com/beancount/beancount.git'
steps:
- uses: actions/checkout@v4
Expand Down