Using >> to append #12
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: Test | |
on: | |
push: | |
branches: ["master", "dev", "autotest"] | |
pull_request: | |
branches: ["master", "dev"] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
julia-version: [1.9.3] | |
julia-arch: [x86] | |
os: [ubuntu-latest] | |
steps: | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.julia-version }} | |
- uses: actions/checkout@v4 | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.SOLPSTESTSAMPLES_SSH_KEY}} | |
${{ secrets.DVC_SSH_KEY }} | |
- name: Configure ssh | |
run: | | |
echo "{{ secrets.DVC_KNOWN_HOSTS }}" >> ~/.ssh/known_hosts | |
echo "{{ secrets.DVC_SSH_CONFIG }}" >> ~/.ssh/config | |
- name: Test ssh | |
run: | | |
echo "$(ssh cybele 'ls ./test/')" | |
echo "$(ssh iris 'ls ./test/')" | |
echo "$(ssh omega 'ls ./test/')" | |
- uses: iterative/setup-dvc@v1 | |
- name: DVC Pull | |
run: | | |
dvc pull | |
- uses: julia-actions/cache@v1 | |
# - uses: julia-actions/julia-buildpkg@v1 | |
- name: Setup julia environment | |
run: | | |
make u | |
- uses: julia-actions/julia-runtest@v1 | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v2 | |
with: | |
files: lcov.info |