From 9072c3287c1e83be76e2b8fc5ea8bc4246625fcc Mon Sep 17 00:00:00 2001 From: Adrian Salceanu Date: Tue, 3 Sep 2024 12:52:07 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1f8b67c..46fa6c2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# StippleTabs +# StippleTabs.jl -This component implements a Tabs menu - \ No newline at end of file +Alternative UI tabs component for Stipple/StippleUI. + From 0372a355ae91a86a78fd79461434fd2164c7c047 Mon Sep 17 00:00:00 2001 From: Adrian Salceanu Date: Tue, 3 Sep 2024 13:06:26 +0200 Subject: [PATCH 2/2] cleanup, v1 --- .github/workflows/CompatHelper.yml | 16 ++++++++++++ .github/workflows/TagBot.yml | 15 +++++++++++ .github/workflows/ci.yml | 42 ++++++++++++++++++++++++++++++ Project.toml | 8 +++--- 4 files changed, 76 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/CompatHelper.yml create mode 100644 .github/workflows/TagBot.yml create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml new file mode 100644 index 0000000..cba9134 --- /dev/null +++ b/.github/workflows/CompatHelper.yml @@ -0,0 +1,16 @@ +name: CompatHelper +on: + schedule: + - cron: 0 0 * * * + workflow_dispatch: +jobs: + CompatHelper: + runs-on: ubuntu-latest + steps: + - name: Pkg.add("CompatHelper") + run: julia -e 'using Pkg; Pkg.add("CompatHelper")' + - name: CompatHelper.main() + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} + run: julia -e 'using CompatHelper; CompatHelper.main()' diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 0000000..f49313b --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,15 @@ +name: TagBot +on: + issue_comment: + types: + - created + workflow_dispatch: +jobs: + TagBot: + if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + ssh: ${{ secrets.DOCUMENTER_KEY }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2ed1dc7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,42 @@ +name: ci +on: + - push + - pull_request +jobs: + test: + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + version: + - '1.6' + - '1' + - 'nightly' + os: + - ubuntu-latest + - macOS-latest + - windows-latest + arch: + - x64 + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/setup-julia@latest + with: + version: ${{ matrix.version }} + arch: ${{ matrix.arch }} + - uses: julia-actions/julia-buildpkg@latest + - uses: julia-actions/julia-runtest@latest + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/setup-julia@latest + with: + version: '1.7' + - name: Install dependencies + run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' + - name: Build and deploy + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token + run: julia --project=docs/ docs/make.jl diff --git a/Project.toml b/Project.toml index 31da86e..c4ee326 100644 --- a/Project.toml +++ b/Project.toml @@ -1,14 +1,12 @@ name = "StippleTabs" uuid = "29f11006-3202-4091-a17b-0a26282d76dd" -version = "0.1.1" +version = "1.0.0" [deps] -DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" Stipple = "4acbeb90-81a0-11ea-1966-bdaff8155998" StippleUI = "a3c5d34a-b254-4859-a8fa-b86abb7e84a3" [compat] -DataFrames = "1.6.1" -Stipple = "0.28.13, 0.29, 0.30" -StippleUI = "0.23" +Stipple = "0.28.14" +StippleUI = "0.23.4" julia = "1.6"