Skip to content

Commit

Permalink
Prepare for v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Bazdresch committed May 11, 2023
1 parent 0055fc3 commit 76152c5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 19 deletions.
40 changes: 22 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SinusoidalRegressions"
uuid = "48dee9f3-50d2-49a3-a3c9-e990db172bec"
authors = ["Miguel Bazdresch <[email protected]> and contributors"]
version = "0.1.0"
version = "0.2.0"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down

0 comments on commit 76152c5

Please sign in to comment.