Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
73108a8
Delete .travis.yml
Aero-Spec Mar 30, 2025
93db3b1
Update CI.yml
Aero-Spec Mar 30, 2025
5036ab9
Update CI.yml
Aero-Spec Mar 30, 2025
fe41f30
Update CI.yml
Aero-Spec Mar 30, 2025
0ba9bfc
Delete .codecov.yml
Aero-Spec Mar 30, 2025
3e31ed6
Update CI.yml
Aero-Spec Mar 30, 2025
d79a401
Update Project.toml
Aero-Spec Mar 30, 2025
8ce6d24
Update runtests.jl
Aero-Spec Apr 23, 2025
2d8be22
Delete appveyor.yml
Aero-Spec Apr 23, 2025
7f46a30
Update Project.toml
Aero-Spec Apr 23, 2025
0abd719
Update CI.yml
Aero-Spec Apr 23, 2025
a6bae64
Delete .github/workflows/TagBot.yml
Aero-Spec Jun 4, 2025
511f6fe
Delete .github/workflows/CompatHelper.yml
Aero-Spec Jun 4, 2025
682fdc5
Delete Manifest.toml
Aero-Spec Jun 4, 2025
9ef0c35
Update runtests.jl
Aero-Spec Jun 4, 2025
ffcb0e9
Update Project.toml
Aero-Spec Jun 4, 2025
6ad764d
Update ContinuumWorld.jl
Aero-Spec Jun 4, 2025
68d20bd
Update solver.jl
Aero-Spec Jun 4, 2025
e5d93d5
Update visualization.jl
Aero-Spec Jun 4, 2025
3cd4326
Update ContinuumWorld.jl
Aero-Spec Jun 4, 2025
418d7a1
Update runtests.jl
Aero-Spec Jun 4, 2025
3eaf909
Update ContinuumWorld.jl
Aero-Spec Jun 4, 2025
b393174
Update CI.yml
Aero-Spec Jun 4, 2025
e4119d3
Update CI.yml
Aero-Spec Jun 4, 2025
49ff09e
Create TagBot.yml
Aero-Spec Jun 4, 2025
02c3393
Create CompatHelper.yml
Aero-Spec Jun 4, 2025
d89c615
Update README.md
Aero-Spec Jun 4, 2025
5d03cbb
Update CI.yml
Aero-Spec Jun 4, 2025
fa34060
Update CI.yml
Aero-Spec Jun 5, 2025
12856be
Update CI.yml
Aero-Spec Jun 5, 2025
5bbe8a1
Update CI.yml
Aero-Spec Jun 5, 2025
8c61c3c
Update CI.yml
Aero-Spec Jun 5, 2025
99f5b10
Update CI.yml
Aero-Spec Jun 5, 2025
7c95381
Update README.md
Aero-Spec Jun 5, 2025
2eaef03
Update CI.yml
Aero-Spec Jun 5, 2025
5e62161
Update CI.yml
Aero-Spec Jun 5, 2025
c69bf31
Update README.md
Aero-Spec Jun 5, 2025
6dff1d1
Delete test/REQUIRE
Aero-Spec Jun 5, 2025
c1f2d78
Update CI.yml
Aero-Spec Jun 5, 2025
021d02e
Update CI.yml
Aero-Spec Jun 5, 2025
c39129e
Update ContinuumWorld.jl
Aero-Spec Jun 8, 2025
119ac10
Update solver.jl
Aero-Spec Jun 8, 2025
6ad0fc1
Update visualization.jl
Aero-Spec Jun 8, 2025
21713ec
Update runtests.jl
Aero-Spec Jun 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .codecov.yml

This file was deleted.

58 changes: 50 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,58 @@
name: CI

on: [push, pull_request]

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
name: Run tests and upload coverage
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: '1.9'

- name: Cache Julia packages
uses: actions/cache@v3
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-julia-artifacts-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-julia-artifacts-

- name: Install dependencies
run: |
julia --project -e '
using Pkg
Pkg.instantiate()
Pkg.add("Coverage")
Pkg.resolve()
'

- name: Run Tests
run: |
julia --project -e '
using Pkg
Pkg.test(coverage=true)
using Coverage
LCOV.writefile("lcov.info", process_folder("."))
'

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
version: '1'
arch: x64
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
token: ${{ secrets.CODECOV_TOKEN }}
slug: Aero-Spec/ContinuumWorld.jl
files: lcov.info
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

Loading