Skip to content

Commit d2edaa2

Browse files
authored
Merge pull request #5 from mathworks-continuous-integration/jpereira/migrate
Get ready for the move
2 parents 1108c60 + 7e5392d commit d2edaa2

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

.github/workflows/bat.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,12 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v1
1111
with:
12-
node-version: '12'
12+
node-version: "12"
1313
- name: Perform npm tasks
1414
run: npm run ci
1515

16-
- name: Checkout setup-matlab-action
17-
uses: actions/checkout@v2
18-
with:
19-
repository: mathworks-continuous-integration/setup-matlab-action
20-
ref: v0.1.0
21-
path: setup-matlab-action
22-
ssh-key: ${{ secrets.SETUP_MATLAB_COMMAND_KEY }}
23-
- name: Perform 'setup-matlab-action'
24-
uses: ./setup-matlab-action
16+
- name: Perform 'setup-matlab'
17+
uses: matlab-actions/setup-matlab
2518
env:
2619
MATHWORKS_TOKEN: ${{ secrets.MATHWORKS_TOKEN }}
2720

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can use this action `with`:
2222
| `command` | (Required) Script, function, or statement to execute. <br/> If the value of `command` is the name of a MATLAB script or function, do not specify the file extension. If you specify more than one MATLAB command, use a comma or semicolon to separate the commands. <br/> **Example**: `myscript` <br/> **Example**: `results = runtests, assertSuccess(results);`
2323

2424
### Using a GitHub-hosted runner?
25-
If you are using a GitHub-hosted runner, you can use the [Set up MATLAB action](https://github.com/mathworks/setup-matlab-action/) to install MATLAB on the runner.
25+
If you are using a GitHub-hosted runner, you can use the [Set up MATLAB action](https://github.com/matlab-actions/setup-matlab/) to install MATLAB on the runner.
2626

2727
## Example
2828

@@ -36,17 +36,17 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
# Set up MATLAB using this action first if running on a GitHub-hosted runner!
39-
- uses: mathworks/setup-matlab-action@v0
39+
- uses: matlab-actions/setup-matlab@v0
4040

4141
- name: Run "disp('hello world')" directly using MATLAB
42-
uses: mathworks/run-matlab-command-action@v0
42+
uses: matlab-actions/run-command@v0
4343
with:
4444
command: disp('hello world')
4545
```
4646
4747
## See also
48-
- [Set up MATLAB action](https://github.com/mathworks/setup-matlab-action/)
49-
- [Run MATLAB Tests](https://github.com/mathworks/run-matlab-tests-action/)
48+
- [Set up MATLAB action](https://github.com/matlab-actions/setup-matlab/)
49+
- [Run MATLAB Tests](https://github.com/matlab-actions/run-tests/)
5050
- [Continuous Integration - MATLAB & Simulink](https://www.mathworks.com/solutions/continuous-integration.html)
5151
5252
## Contact Us

0 commit comments

Comments
 (0)