Skip to content

Commit

Permalink
Merge pull request #247 from amattioc/develop
Browse files Browse the repository at this point in the history
R CI
  • Loading branch information
amattioc authored Feb 29, 2024
2 parents a832678 + 8f012ff commit dd8c10f
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/matlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: SDMX MATLAB CI
name: MATLAB CI

# Controls when the action will run.
on:
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/r-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

name: R CI

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

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

jobs:
build-java:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

# Setup job
- name: Set up JDK 11 for x64
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
- run: echo $JAVA_HOME

- uses: r-lib/actions/setup-r@v2
with:
r-version: '4.3.2'

- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: deps::./RJSDMX
extra-packages: any::RUnit

- name: Testing
run: |
R CMD INSTALL ./RJSDMX && \
Rscript -e "library(RUnit); library(RJSDMX); runTestFile('RJSDMX/R/test_automation/test.sdmx.r')"
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
Sdmx Connectors
====

[![SDMX MATLAB CI](https://github.com/amattioc/SDMX/actions/workflows/matlab-ci.yml/badge.svg?branch=master)](https://github.com/amattioc/SDMX/actions/workflows/matlab-ci.yml)

Setup and Configuration: [SDMX wiki](https://github.com/amattioc/SDMX/wiki)<br>

[![MATLAB CI](https://github.com/amattioc/SDMX/actions/workflows/matlab-ci.yml/badge.svg?branch=master)](https://github.com/amattioc/SDMX/actions/workflows/matlab-ci.yml)

[![R CI](https://github.com/amattioc/SDMX/actions/workflows/r-ci.yml/badge.svg?branch=master)](https://github.com/amattioc/SDMX/actions/workflows/r-ci.yml)

![Latest Release](https://img.shields.io/github/v/release/amattioc/SDMX) ![Latest Release downloads](https://img.shields.io/github/downloads/amattioc/SDMX/latest/total)


Expand Down

0 comments on commit dd8c10f

Please sign in to comment.