Skip to content

Commit 60e6388

Browse files
committed
bump version
1 parent 8583eb5 commit 60e6388

File tree

3 files changed

+64
-1
lines changed

3 files changed

+64
-1
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
3+
version: 2
4+
updates:
5+
- package-ecosystem: "github-actions" # See documentation for possible values
6+
directory: "/" # Location of package manifests
7+
schedule:
8+
interval: "daily"

.github/workflows/ci.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
push:
7+
branches:
8+
- main
9+
tags: '*'
10+
jobs:
11+
test:
12+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
13+
runs-on: ${{ matrix.os }}
14+
continue-on-error: ${{ matrix.allow_failure }}
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
version:
19+
- 'lts'
20+
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
21+
- 'pre'
22+
os: [ubuntu-latest]
23+
arch: [x64]
24+
allow_failure: [false]
25+
steps:
26+
- uses: actions/checkout@v4
27+
- uses: julia-actions/setup-julia@v2
28+
with:
29+
version: ${{ matrix.version }}
30+
arch: ${{ matrix.arch }}
31+
- uses: julia-actions/cache@v2
32+
- uses: julia-actions/julia-buildpkg@v1
33+
- uses: julia-actions/julia-runtest@v1
34+
env:
35+
JULIA_NUM_THREADS: 4,1
36+
- uses: julia-actions/julia-processcoverage@v1
37+
- uses: codecov/codecov-action@v5
38+
env:
39+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
40+
with:
41+
file: lcov.info
42+
43+
docs:
44+
name: Documentation
45+
runs-on: ubuntu-latest
46+
steps:
47+
- uses: actions/checkout@v4
48+
- uses: julia-actions/cache@v2
49+
- uses: julia-actions/julia-buildpkg@latest
50+
- uses: julia-actions/julia-docdeploy@latest
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
name = "Scryfall"
22
uuid = "26fa0e40-23c6-5e70-8e5d-49a8a0c72583"
33
authors = ["Moelf <jerryling315@gmail.com>"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
77
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
88
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
99

1010
[compat]
11+
HTTP = "1.10"
12+
JSON = "0.21"
1113
julia = "1"
1214

1315
[extras]

0 commit comments

Comments
 (0)