hledger-forecast 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +4 -8
- data/hledger-forecast.gemspec +2 -0
- data/lib/hledger_forecast/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dec0f161d9d99f109fb449763f74d8ed4362deefe14996a540df934a6b318f08
|
4
|
+
data.tar.gz: e88100cca81d8a444b1f7d9189e2d7149d03f0bcda7d133c09a393d7447b0e77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c07c049aded3d72ce1479c123d57d3e9b76a04318a6f18ee7ebff1505ff239fab6d6ca09fbe6bb6adaf9e2f26628d728bba89010ed6dcbf3b25eb49ffdbd3a89
|
7
|
+
data.tar.gz: 19cd01fbfb3113228fe504b7e3984986400cd8c4bb1e6f3b49ef9e34c9c0c0e59ac9098f73878869d8856413e4959978f869f4add3227d3d9a5ea90c311abaa9
|
data/.github/workflows/ci.yml
CHANGED
@@ -8,26 +8,22 @@ on:
|
|
8
8
|
|
9
9
|
jobs:
|
10
10
|
test:
|
11
|
+
|
11
12
|
runs-on: ubuntu-latest
|
12
13
|
strategy:
|
13
14
|
matrix:
|
14
|
-
ruby-version:
|
15
|
-
- 3.1.2
|
16
|
-
- 3.0
|
15
|
+
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
|
17
16
|
|
18
17
|
steps:
|
19
18
|
- uses: actions/checkout@v3
|
20
|
-
- name: Update
|
19
|
+
- name: Update packages
|
21
20
|
run: sudo apt-get update
|
22
21
|
- name: Install packages
|
23
22
|
run: sudo apt-get -y install ledger hledger
|
24
23
|
- name: Set up Ruby
|
25
|
-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
26
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
27
24
|
uses: ruby/setup-ruby@v1
|
28
|
-
# uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
29
25
|
with:
|
30
26
|
bundler-cache: true # runs 'bundle install' and caches installed gems
|
31
27
|
ruby-version: ${{ matrix.ruby-version }}
|
32
28
|
- name: Run tests
|
33
|
-
run: rspec
|
29
|
+
run: bundle exec rspec
|
data/hledger-forecast.gemspec
CHANGED