Skip to content

Commit

Permalink
Fix CI after #35 (#38)
Browse files Browse the repository at this point in the history
* Fix CI

* Add CI
  • Loading branch information
theogf committed Dec 15, 2023
1 parent a9e6d52 commit 7c8f59c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@ jobs:
fail-fast: false
matrix:
version:
- '1'
- '1.0'
- '1.1'
- '1.2'
- '1.3'
- '1.4'
- '1.5'
- '1'
- 'nightly'
os:
- ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.1.1"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
julia = "1"
Expand Down
5 changes: 3 additions & 2 deletions src/WatchJuliaBurn.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export emojify
using Base: print

using LinearAlgebra
using Statistics
const emoji_to_func = Dict{Any, Any}()

"""
Expand All @@ -27,8 +28,8 @@ macro new_emoji(emoji, func, julia_version)
emoji_to_func[emoji] = (func, julia_version)
return esc(quote
if VERSION >= @v_str $(julia_version)
@eval export $(Symbol(emoji))
@eval const $(Symbol(emoji)) = $(func)
export $(Symbol(emoji))
const $(Symbol(emoji)) = $(func)
end
end)
end
Expand Down

0 comments on commit 7c8f59c

Please sign in to comment.