From 76152c519665e8270794ca889e3ad8722c87c0ce Mon Sep 17 00:00:00 2001 From: Miguel Bazdresch Date: Thu, 11 May 2023 19:13:02 -0400 Subject: [PATCH] Prepare for v0.2 --- .github/workflows/ci.yml | 40 ++++++++++++++++++++++------------------ Project.toml | 2 +- 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b3cb27..8fcbb73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,31 +3,35 @@ name: CI on: pull_request: push: - branches: [main] - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true + tags: + - v* + workflow_dispatch: jobs: - test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - version: - - '1.8' - - '1.9' - os: [ubuntu-latest] - arch: [x64] + julia-1.8: + name: Julia LTS + runs-on: ubuntu-latest + steps: + - run: sudo apt-get -y install gnuplot + - uses: julia-actions/setup-julia@latest + with: + version: 1.8 + arch: x64 + - uses: actions/checkout@v3 + - uses: julia-actions/cache@v1 + - uses: julia-actions/julia-buildpkg@latest + - uses: julia-actions/julia-runtest@latest + julia-stable: + name: Julia Stable + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - run: sudo apt-get -y install gnuplot - uses: julia-actions/setup-julia@latest with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} + version: 1 + arch: x64 - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-runtest@latest diff --git a/Project.toml b/Project.toml index d6a1636..3e4e4d5 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SinusoidalRegressions" uuid = "48dee9f3-50d2-49a3-a3c9-e990db172bec" authors = ["Miguel Bazdresch and contributors"] -version = "0.1.0" +version = "0.2.0" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"