aem: avoid using memcpy on zero-length continuous state vector #830
This file contains hidden or 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: R-CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| R-CI: | |
| runs-on: ubuntu-latest | |
| container: fedora:latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ansible | |
| run: sudo dnf --assumeyes install ansible | |
| - name: Get ansible playbook to check package | |
| run: curl -Ls https://stewid.github.io/ansible-r-ci/r-ci.yml -o ../r-ci.yml | |
| - name: Check package | |
| run: ansible-playbook -i localhost, --extra-vars "sysreqs=gsl-devel,gawk r_ci_covr=codecov" ../r-ci.yml |