Skip to content

Commit

Permalink
Add GHA-based testing (#4)
Browse files Browse the repository at this point in the history
* Add GHA-based testing

* Switch `StateSelection` to HTTPS URL, rather than git.

* Disable coverage
  • Loading branch information
staticfloat authored Aug 2, 2024
1 parent cca230c commit ef6e297
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 6 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Run tests

on:
push:
branches:
- main
pull_request:

# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
# Eventually, we'll put '1' here as well
julia-version: ['nightly']

steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: x64
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
coverage: false
# with:
# annotate: true
18 changes: 12 additions & 6 deletions Manifest.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ef6e297

Please sign in to comment.