Merge pull request #79 from Chandra-MARX/5.5.X #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: compile and run marx | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make | |
- name: make install | |
run: sudo make install | |
- name: marxversion | |
run: marx --version | |
- name: run marx | |
run: | | |
cp /usr/local/share/marx/pfiles/*.par . | |
marx | |
- name: run marx2fits | |
run: marx2fits point point.fits | |
- name: run marxpileup | |
run: marxpileup MarxOutputDir=point | |
- name: run marxasp | |
run: marxasp MarxDir=point | |
- name: List files (to check previous commands worked) | |
run: ls |