Skip to content

Commit

Permalink
chore: Add basic CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dhanak committed Oct 10, 2023
1 parent 3f3be30 commit aee9295
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .ci/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[deps]
RegistryCI = "0c95cc5f-2f7e-43fe-82dd-79dbcba86b32"
34 changes: 34 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3

- name: Setup Julia environment
uses: julia-actions/setup-julia@v1

# Install dependencies
- run: julia --project=.ci -e 'using Pkg; Pkg.instantiate()'

# Run registry tests
- run: julia --project=.ci -e 'using RegistryCI; RegistryCI.test(registry_deps=["https://github.com/JuliaRegistries/General"])'

0 comments on commit aee9295

Please sign in to comment.