Switch position and momentum updates to make particle push symplectic #127
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: CI | |
on: | |
push: | |
branches: [main] | |
tags: '*' | |
pull_request: | |
jobs: | |
initial_check: | |
name: Initial checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1.9' | |
arch: x64 | |
- uses: julia-actions/cache@v1 | |
- name: Format with JuliaFormatter | |
run: julia --project=utils/format utils/format/format.jl | |
- name: Check formatting | |
run: | | |
if [[ $(git diff --name-only | wc -l) -ge 1 ]]; then exit 1; else exit 0; fi | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: adamslc/julia-runtest@main | |
with: | |
test_arg: basics | |
name: Run basic tests | |
test: | |
needs: initial_check | |
name: Run ${{ matrix.test_subset }} tests (Julia v${{ matrix.version }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ['1.9', '1.10', '~1.11.0-0'] | |
os: [ubuntu-latest] | |
arch: [x64] | |
test_subset: ['unit', 'integration'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: adamslc/julia-runtest@main | |
with: | |
test_arg: ${{ matrix.test_subset }} | |
name: Run ${{ matrix.test_subset }} tests | |
docs: | |
needs: initial_check | |
name: Build documentation | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1.9' | |
- uses: julia-actions/cache@v1 | |
- name: Install dependencies | |
run: julia --project=docs -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
run: julia --project=docs docs/make.jl |