Skip to content

Commit

Permalink
Add dev ci.
Browse files Browse the repository at this point in the history
Signed-off-by: Bertrand Rix <bertrand.rix@artelys.com>
  • Loading branch information
obrix committed Aug 6, 2024
1 parent 554ae1c commit 54afdf9
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Dev CI

on:
push:
branches:
# on all branches except main where full build will be run
- '*'
- '!main'

jobs:
linux_build:
name: Build linux ${{ matrix.python.name }}
runs-on: ubuntu-latest
strategy:
matrix:
version:
- '1.9'
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
os:
- ubuntu-latest
arch:
- x64
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
submodules: true

- uses: julia-actions/setup-julia@v2
with:
version: '1.10'

- name: Build
run: |
julia build_local.jl --verbose

0 comments on commit 54afdf9

Please sign in to comment.