Add Times.to/from_astropy roundtrip test (#36) #109
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: docker - Build Lint and Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-lint-test: | |
runs-on: ubuntu-latest | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v3 | |
- uses: jpribyl/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
install: true | |
- name: Build and Install | |
run: docker build --load -t adam-core:$IMAGE_TAG . | |
- name: Lint | |
run: docker run -i adam-core:$IMAGE_TAG pre-commit run --all-files | |
- name: Test | |
run: docker run -i adam-core:$IMAGE_TAG pytest . --cov |