craft: release "sentry-dart", version "8.10.1" #1784
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: lint then test | |
on: | |
push: | |
branches: [master, test-me-*] | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.7" | |
- name: sync symlinks | |
run: | | |
# Ensure symlinks are synced | |
make sync-all-links | |
if [ "$(git status --porcelain)" ]; then | |
echo 'Symlinks out-of-sync. Please run "make sync-all-links" and update your commit.' | |
exit 1 | |
fi | |
- name: lint | |
env: | |
TARGET: lint | |
run: | | |
./api-server/bin/test-utils/run-tests | |
- name: test | |
env: | |
TARGET: test | |
run: | | |
./api-server/bin/test-utils/run-tests |